net.sf.andromedaioc.model.beans.AbstractParameterModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.model.beans;
public abstract class AbstractParameterModel {
private ValueModel value;
public ValueModel getValue() {
return value;
}
protected void setValue(ValueModel value) {
this.value = value;
}
}