69 lines
3.4 KiB
Java
69 lines
3.4 KiB
Java
package flintstones.application.constants;
|
|
|
|
@SuppressWarnings("javadoc")
|
|
public interface ApplicationContants {
|
|
|
|
String MWindow_Main = "flintstones.application.trimmedwindow.flintstones";
|
|
|
|
// 0.APP MAIN MENU
|
|
String MHandledToolItem_Menu_FrameworkStructuring = "flintstones.application.toolbar.perspectiveswitcher.handledtoolitem.frameworkstructuring";
|
|
String MHandledToolItem_Menu_Gathering = "flintstones.application.toolbar.perspectiveswitcher.handledtoolitem.gathering";
|
|
String MHandledToolItem_Change_Problem_Type = "flintstones.application.directtoolitem.problem.type";
|
|
|
|
// 1.FRAMEWORK
|
|
String MPartStack_Domain = "flintstones.framework.ui.partstack.domains";
|
|
String MPartStack_DomainViewer = "flintstones.framework.ui.partstack.domain";
|
|
String MPartStack_AHPClasses = "flintstones.framework.ui.partstack.ahpclasses";
|
|
String MPartStack_AHPPRofiles = "flintstones.framework.ui.partstack.ahpprofiles";
|
|
String MPartStack_AHPViewer = "flintstones.framework.ui.partstack.ahpviewer";
|
|
|
|
|
|
// 3.GATHERING
|
|
String MPart_Gatehring_Selector = "flintstones.gathering.ui.part.selectorpart";
|
|
|
|
// 3 - Generic AHP GATHERING
|
|
String MPartStack_AHP_Gathering = "flintstones.application.perspective.ahpgathering.partstack";
|
|
String MPartStack_AHP_Comparing = "flintstones.application.perspective.ahpcomparing.partstack";
|
|
String MPerspective_AHP_Comparing = "flintstones.application.perspective.ahpcomparing";
|
|
String MPerspective_AHP_Gathering = "flintstones.application.perspective.ahpgathering";
|
|
|
|
String MPerspective_AHP = "flintstones.application.perspective.ahpgathering";
|
|
// 3.GATHERING AHP
|
|
String MPerspective_Rating_AHP = "flintstones.application.perspective.gathering.ahp.ui";
|
|
|
|
// 3.GATHERING AHPSORT
|
|
String MPerspective_Rating_AHPSort = "flintstones.application.perspective.gathering.ahpsort.ui";
|
|
|
|
// 3.GATHERING AHPSORTII
|
|
String MPart_Gathering_ReferencePoints = "flintstones.application.perspective.gathering.ahpsortii.ui.referencepoints";
|
|
// 4.RATING
|
|
String MMenu_Rating = "flintstones.application.menu.rating";
|
|
String MPerspective_Rating = "flintstones.application.perspective.rating";
|
|
|
|
// 4.Rating > Select Method Menu
|
|
String MCommand_Rating_Selectmethod = "flintstones.application.command.rating.selectmethod";
|
|
String MHandler_Rating_Selectmethod = "flintstones.application.handler.rating.selectmethod";
|
|
String MParameter_Rating_Selectmethod = "flintstones.application.commandparameter.rating.selectmethod";
|
|
String MParameter_Rating_Selectmethod__label = "method_id";
|
|
|
|
// 4.1
|
|
String MPerspective_Phase = "flintstones.application.perspective.phase";
|
|
String MPartSashContainer_Phase_Container = "flintstones.application.perspective.phase.ui.partsashcontainer.container";
|
|
|
|
// 4.1 - Aggregation
|
|
String MPerspective_Phase_Phantom = "flintstones.application.perspective.phase.phantomphasecontainer";
|
|
|
|
// Select Locale Menu
|
|
String MCommand_Global_Selectlocale = "flintstones.application.command.locale";
|
|
String MParameter_Global_Selectlocale = "flintstones.application.commandparameter.localeId";
|
|
|
|
// Debug > Send broker events menu
|
|
String MMenu_Sendbroker = "flintstones.application.menu.sendbroker";
|
|
String MCommand_General_Sendbroker = "flintstones.application.command.debug.sendbroker";
|
|
String MHandler_General_Sendbroker = "flintstones.application.handler.debug.sendbroker";
|
|
String MParameter_General_Sendbroker = "flintstones.application.commandparameter.debug.sendbroker.brokerevent";
|
|
String MParameter__General_Sendbroker__label = "event_id";
|
|
|
|
|
|
}
|