public code v1

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:32:57 +02:00
commit 759a8968a2
4357 changed files with 163763 additions and 0 deletions
@@ -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;
}
}
@@ -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;
}