com.genexus.GxUserType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus;
import com.genexus.xml.GXXMLSerializable;
public abstract class GxUserType extends GXXMLSerializable implements Cloneable, java.io.Serializable, IGXAssigned
{
public GxUserType(ModelContext context, String type)
{
super(-1, context, type);
}
public GxUserType(int remoteHandle, ModelContext context, String type)
{
super( remoteHandle, context, type);
}
boolean bIsAssigned = true;
public abstract String getJsonMap( String value );
@Override
public boolean getIsAssigned() {
return bIsAssigned;
}
@Override
public void setIsAssigned(boolean bAssigned) {
bIsAssigned = bAssigned;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy