|
@@ -5,6 +5,8 @@ import java.util.LinkedList;
|
|
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
|
|
+import javafx.util.Pair;
|
|
|
+
|
|
|
/**
|
|
|
* The class "HolonElement" represents any possible element that can be added to
|
|
|
* a CpsObject (such as TV (consumer) or any energy source/producer).
|
|
@@ -34,11 +36,10 @@ public class HolonElement {
|
|
|
private char sign;
|
|
|
/* Place where the Object is Stored */
|
|
|
@Expose
|
|
|
- private String sav;
|
|
|
- /* Object where the Element is Stored */
|
|
|
- @Expose
|
|
|
- private String obj;
|
|
|
- /* Unique Id of the Element */
|
|
|
+ private Pair<String, String> saving;
|
|
|
+ /*
|
|
|
+ * ID
|
|
|
+ */
|
|
|
@Expose
|
|
|
private int id;
|
|
|
/*
|
|
@@ -104,8 +105,7 @@ public class HolonElement {
|
|
|
for (Point p : element.getGraphPoints()) {
|
|
|
this.graphPoints.add(new Point((int) p.getX(), (int) p.getY()));
|
|
|
}
|
|
|
- setSav("CVS");
|
|
|
- setObj(element.getObj());
|
|
|
+ setSaving(null);
|
|
|
setId(IdCounterElem.nextId());
|
|
|
setFlexibility(0);
|
|
|
setActiveFlex(false);
|
|
@@ -276,42 +276,6 @@ public class HolonElement {
|
|
|
this.sign = '+';
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return the stored.
|
|
|
- */
|
|
|
- public String getSav() {
|
|
|
- return sav;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * for save purposes.
|
|
|
- *
|
|
|
- * @param sav
|
|
|
- * the stored to set
|
|
|
- */
|
|
|
- public void setSav(String sav) {
|
|
|
- this.sav = sav;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Get the actual object.
|
|
|
- *
|
|
|
- * @return the obj
|
|
|
- */
|
|
|
- public String getObj() {
|
|
|
- return obj;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Set the object to a new one.
|
|
|
- *
|
|
|
- * @param obj
|
|
|
- * the obj to set
|
|
|
- */
|
|
|
- public void setObj(String obj) {
|
|
|
- this.obj = obj;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Get the points (values) in the graph.
|
|
|
*
|
|
@@ -377,4 +341,19 @@ public class HolonElement {
|
|
|
public int getId() {
|
|
|
return id;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return the saving
|
|
|
+ */
|
|
|
+ public Pair<String, String> getSaving() {
|
|
|
+ return saving;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param saving
|
|
|
+ * the saving to set
|
|
|
+ */
|
|
|
+ public void setSaving(Pair<String, String> saving) {
|
|
|
+ this.saving = saving;
|
|
|
+ }
|
|
|
}
|