com.threerings.presents.tools.dobject_oidlist.tmpl Maven / Gradle / Ivy
The newest version!
/**
* Requests that oid
be added to the {{field}}
* oid list. The list will not change until the event is actually
* propagated through the system.
*/
{{generated}}
public void addTo{{upfield}} (int oid)
{
requestOidAdd({{capfield}}, {{field}}, oid);
}
/**
* Requests that oid
be removed from the
* {{field}}
oid list. The list will not change until the
* event is actually propagated through the system.
*/
{{generated}}
public void removeFrom{{upfield}} (int oid)
{
requestOidRemove({{capfield}}, {{field}}, oid);
}