io.firebus.utils.FirebusJSObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
package io.firebus.utils;
import java.util.HashMap;
public class FirebusJSObject //extends AbstractJSObject
{
protected HashMap map;
public FirebusJSObject()
{
map = new HashMap();
}
/*
public String getClassName()
{
return "Object";
}
public Object getMember(String arg0)
{
return map.get(arg0);
}
public boolean hasMember(String arg0)
{
return map.containsKey(arg0);
}
public Set keySet()
{
return map.keySet();
}
public void removeMember(String arg0)
{
map.remove(arg0);
}
public void setMember(String arg0, Object arg1)
{
map.put(arg0, arg1);
}
*/
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy