public code v1
This commit is contained in:
+52
@@ -0,0 +1,52 @@
|
||||
package flintstones.method.common.phase.selectBLTS;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
import org.eclipse.e4.core.services.nls.Translation;
|
||||
|
||||
import flintstones.domain.fuzzyset.FuzzySet;
|
||||
import flintstones.entity.domain.Domain;
|
||||
import flintstones.entity.method.phase.PhaseMethod;
|
||||
import flintstones.method.common.phase.selectBLTS.messages.Messages;
|
||||
|
||||
/**
|
||||
* The Class SelectBLTSPhase.
|
||||
*/
|
||||
public class SelectBLTSPhase extends PhaseMethod {
|
||||
|
||||
/** The unified domain. */
|
||||
private FuzzySet unifiedDomain;
|
||||
|
||||
/** The messages. */
|
||||
@Inject
|
||||
@Translation
|
||||
Messages messages;
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see flintstones.phasemethod.PhaseMethod#getName()
|
||||
*/
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Select BLTS";
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the unified domain.
|
||||
*
|
||||
* @param selectedDomain the new unified domain
|
||||
*/
|
||||
public void setUnifiedDomain(FuzzySet selectedDomain) {
|
||||
this.unifiedDomain = selectedDomain;
|
||||
this.exportData("unifiedDomain", selectedDomain);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the unified domain.
|
||||
*
|
||||
* @return the unified domain
|
||||
*/
|
||||
public Domain getUnifiedDomain() {
|
||||
return this.unifiedDomain;
|
||||
}
|
||||
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
//This file has been auto-generated
|
||||
package flintstones.method.common.phase.selectBLTS.messages;
|
||||
|
||||
import org.eclipse.e4.core.services.nls.Message;
|
||||
|
||||
@Message
|
||||
@SuppressWarnings("javadoc")
|
||||
public class Messages {
|
||||
|
||||
public String Select_BLTS_name;
|
||||
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
|
||||
Select_BLTS_name=Select BLTS
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
|
||||
Select_BLTS_name=Elegir BLTS
|
||||
|
||||
Reference in New Issue
Block a user