All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.GxUserType Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.3
Show newest version
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