Package org.cyclos.entities.system
Class ImportedLineValue
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.NetworkedEntity
-
- org.cyclos.entities.BaseEntity
-
- org.cyclos.entities.system.ImportedLineValue
-
- All Implemented Interfaces:
Cloneable,HasNetwork,ProcessableForProxying,IEntity
@Entity public class ImportedLineValue extends BaseEntity
Represents an import value.
For example, if we have a field like this address[0].line1:
importField refers to the canonical name of the field: address.line1 (without the id part)
importFieldId refers to the field id: 0 in this case.
value is the exact imported value for this field.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.cyclos.entities.SimpleEntity
SimpleEntity.EntityLoadNotifier
-
-
Constructor Summary
Constructors Constructor Description ImportedLineValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImportedFieldgetImportedField()ImportedLinegetImportedLine()NetworkgetNetwork()Returns the network this entity belongs toStringgetValue()voidsetImportedField(ImportedField importedField)voidsetImportedLine(ImportedLine importedLine)voidsetValue(String value)-
Methods inherited from class org.cyclos.entities.BaseEntity
getDataTranslationType, getVersion
-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
equals, getId, hashCode, id, ids, isPersistent, isTransient, register, setId, toShortString, toString, uniqueIds, uniqueIds
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.entities.ProcessableForProxying
getProxyClass
-
-
-
-
Method Detail
-
getImportedField
public ImportedField getImportedField()
-
getImportedLine
public ImportedLine getImportedLine()
-
getNetwork
public Network getNetwork()
Description copied from interface:HasNetworkReturns the network this entity belongs to
-
getValue
public String getValue()
-
setImportedField
public void setImportedField(ImportedField importedField)
-
setImportedLine
public void setImportedLine(ImportedLine importedLine)
-
setValue
public void setValue(String value)
-
-