railo.runtime
Class SuperComponent

java.lang.Object
  extended by railo.runtime.component.MemberSupport
      extended by railo.runtime.SuperComponent
All Implemented Interfaces:
Serializable, Cloneable, Map, Component, Member, ComponentPro, Dumpable, Castable, Collection, Duplicable, Iteratorable, Objects, Sizeable, Struct

public class SuperComponent
extends MemberSupport
implements ComponentPro, Member, Sizeable

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from interface railo.runtime.type.Collection
Collection.Key
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Field Summary
 
Fields inherited from interface railo.runtime.Component
ACCESS_COUNT, ACCESS_PACKAGE, ACCESS_PRIVATE, ACCESS_PUBLIC, ACCESS_REMOTE
 
Fields inherited from interface railo.runtime.type.Struct
TYPE_LINKED, TYPE_REGULAR, TYPE_SYNC, TYPE_WEAKED
 
Method Summary
 Object call(PageContext pc, Collection.Key name, Object[] args)
          calls a method of the object
 Object call(PageContext pc, String name, Object[] args)
          call a method of the component with no named arguments
 Object callWithNamedValues(PageContext pc, Collection.Key methodName, Struct args)
          call a method of the Object with named arguments
 Object callWithNamedValues(PageContext pc, String name, Struct args)
          call a method of the component with named arguments
 Boolean castToBoolean(Boolean defaultValue)
          cast the castable value to a boolean value
 boolean castToBooleanValue()
          cast the castable value to a boolean value
 DateTime castToDateTime()
          cast the castable value to a date time object
 DateTime castToDateTime(DateTime defaultValue)
          cast the castable value to a date time object
 double castToDoubleValue()
          cast the castable value to a double value
 double castToDoubleValue(double defaultValue)
          cast the castable value to a double value
 String castToString()
          cast the castable value to a string, other than the Method toString, this Method can throw a Exception
 String castToString(String defaultValue)
          cast the castable value to a string, return the default value, when the method is not castable
 void clear()
          clears the collection
 Object clone()
           
 int compareTo(boolean b)
           
 int compareTo(DateTime dt)
           
 int compareTo(double d)
           
 int compareTo(String str)
           
 boolean contains(PageContext pc, Collection.Key key)
           
 boolean containsKey(Collection.Key key)
          contains this key
 boolean containsKey(Object key)
           
 boolean containsKey(String name)
          contains this key
 boolean containsValue(Object value)
           
 Collection duplicate(boolean deepCopy)
           
 Set entrySet()
           
 boolean equalTo(String type)
           
 Object get(Collection.Key key)
          return a value from the collection
 Object get(Collection.Key key, Object defaultValue)
          return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null
 Object get(Object key)
           
 Object get(PageContext pc, Collection.Key key)
          return property or getter of the ContextCollection
 Object get(PageContext pc, Collection.Key key, Object defaultValue)
          return property
 Object get(PageContext pc, String name)
          return property or getter of the ContextCollection
 Object get(PageContext pc, String name, Object defaultValue)
          return property
 Object get(String name)
          return a value from the collection
 Object get(String name, Object defaultValue)
          return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null
 String getAbsName()
           
 String getBaseAbsName()
           
 String getCallName()
           
 ComponentScope getComponentScope()
           
 String getDisplayName()
           
 String getExtends()
           
 String getHint()
           
 Class getJavaAccessClass(RefBoolean isNew)
          returns java class to the component interface (all UDFs), this class is generated dynamic when used
 Member getMember(int access, Collection.Key key, boolean dataMember, boolean superAccess)
           
 Struct getMetaData(PageContext pc)
          returns Meta Data to the Component
 String getName()
           
 boolean getOutput()
           
 Page getPage()
           
 PageSource getPageSource()
           
 Property[] getProperties(boolean onlyPeristent)
          return all properties from component
 Object getValue()
          return the value itself
 String getWSDLFile()
           
 boolean instanceOf(String type)
          check if Component is instance of this type
 boolean isBasePeristent()
           
 boolean isEmpty()
           
 boolean isInitalized()
           
 boolean isValidAccess(int access)
          check if value is a valid access modifier constant
 Iterator iterator()
           
 Iterator keyIterator()
           
 Collection.Key[] keys()
           
 String[] keysAsString()
           
 Set keySet()
           
 Object put(Object key, Object value)
           
 void putAll(Map map)
           
 Object remove(Collection.Key key)
          removes value from collection and return it when it exists, otherwise throws a exception
 Object remove(Object key)
           
 Object removeEL(Collection.Key key)
          removes value from collection and return it when it exists, otherwise returns null
 Object set(Collection.Key key, Object value)
          sets a value to the collection
 Object set(PageContext pc, Collection.Key key, Object value)
          sets a property (Data Member) value of the object
 Object set(PageContext pc, String name, Object value)
          sets a property (Data Member) value of the object
 Object set(String name, Object value)
          sets a value to the collection
 Object setEL(Collection.Key key, Object value)
          sets a value to the collection, if key doesn't exist, dont throw a exception, returns null
 Object setEL(PageContext pc, Collection.Key name, Object value)
          sets a property (Data Member) value of the object
 Object setEL(PageContext pc, String name, Object value)
          sets a property (Data Member) value of the object
 Object setEL(String name, Object value)
          sets a value to the collection, if key doesn't exist, dont throw a exception, returns null
 void setProperty(Property property)
           
 int size()
           
 long sizeOf()
          return the size of the object
static Collection superInstance(ComponentImpl comp)
           
static Member superMember(ComponentImpl comp)
           
 DumpData toDumpData(PageContext pageContext, int maxlevel, DumpProperties dp)
          method to print out information to a object as HTML
 Iterator valueIterator()
           
 Collection values()
           
 
Methods inherited from class railo.runtime.component.MemberSupport
getAccess, setAccess, setAccess
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 
Methods inherited from interface railo.runtime.component.Member
getAccess
 

Method Detail

superMember

public static Member superMember(ComponentImpl comp)

superInstance

public static Collection superInstance(ComponentImpl comp)

getValue

public Object getValue()
Description copied from interface: Member
return the value itself

Specified by:
getValue in interface Member
Returns:
value
See Also:
Member.getValue()

call

public Object call(PageContext pc,
                   String name,
                   Object[] args)
            throws PageException
Description copied from interface: Component
call a method of the component with no named arguments

Specified by:
call in interface Component
Specified by:
call in interface Objects
Parameters:
pc - PageContext
name - name of the method
args - Arguments for the method
Returns:
return result of the method
Throws:
PageException
See Also:
ComponentImpl.call(railo.runtime.PageContext, java.lang.String, java.lang.Object[])

call

public Object call(PageContext pc,
                   Collection.Key name,
                   Object[] args)
            throws PageException
Description copied from interface: Objects
calls a method of the object

Specified by:
call in interface Objects
name - name of the method to call
args - arguments to call method with
Returns:
return value of the method
Throws:
PageException
See Also:
ComponentImpl.call(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object[])

callWithNamedValues

public Object callWithNamedValues(PageContext pc,
                                  String name,
                                  Struct args)
                           throws PageException
Description copied from interface: Component
call a method of the component with named arguments

Specified by:
callWithNamedValues in interface Component
Specified by:
callWithNamedValues in interface Objects
Parameters:
pc - PageContext
name - name of the method
args - Named Arguments for the method
Returns:
return result of the method
Throws:
PageException
See Also:
ComponentImpl.callWithNamedValues(railo.runtime.PageContext, java.lang.String, railo.runtime.type.Struct)

callWithNamedValues

public Object callWithNamedValues(PageContext pc,
                                  Collection.Key methodName,
                                  Struct args)
                           throws PageException
Description copied from interface: Objects
call a method of the Object with named arguments

Specified by:
callWithNamedValues in interface Objects
Parameters:
pc - PageContext
methodName - name of the method
args - Named Arguments for the method
Returns:
return result of the method
Throws:
PageException
See Also:
ComponentImpl.callWithNamedValues(railo.runtime.PageContext, railo.runtime.type.Collection.Key, railo.runtime.type.Struct)

castToBooleanValue

public boolean castToBooleanValue()
                           throws PageException
Description copied from interface: Castable
cast the castable value to a boolean value

Specified by:
castToBooleanValue in interface Castable
Returns:
boolean Value representation of the Object
Throws:
PageException
See Also:
ComponentImpl.castToBooleanValue()

castToBoolean

public Boolean castToBoolean(Boolean defaultValue)
Description copied from interface: Castable
cast the castable value to a boolean value

Specified by:
castToBoolean in interface Castable
Returns:
boolean Value representation of the Object
See Also:
Castable.castToBoolean(java.lang.Boolean)

castToDateTime

public DateTime castToDateTime()
                        throws PageException
Description copied from interface: Castable
cast the castable value to a date time object

Specified by:
castToDateTime in interface Castable
Returns:
date time representation of the Object
Throws:
PageException
See Also:
ComponentImpl.castToDateTime()

castToDateTime

public DateTime castToDateTime(DateTime defaultValue)
Description copied from interface: Castable
cast the castable value to a date time object

Specified by:
castToDateTime in interface Castable
Parameters:
defaultValue - returned when it is not possible to cast to a dateTime object
Returns:
date time representation of the Object
See Also:
Castable.castToDateTime(railo.runtime.type.dt.DateTime)

castToDoubleValue

public double castToDoubleValue()
                         throws PageException
Description copied from interface: Castable
cast the castable value to a double value

Specified by:
castToDoubleValue in interface Castable
Returns:
double Value representation of the Object
Throws:
PageException
See Also:
ComponentImpl.castToDoubleValue()

castToDoubleValue

public double castToDoubleValue(double defaultValue)
Description copied from interface: Castable
cast the castable value to a double value

Specified by:
castToDoubleValue in interface Castable
Returns:
double Value representation of the Object
See Also:
Castable.castToDoubleValue(double)

castToString

public String castToString()
                    throws PageException
Description copied from interface: Castable
cast the castable value to a string, other than the Method toString, this Method can throw a Exception

Specified by:
castToString in interface Castable
Returns:
String representation of the Object
Throws:
PageException
See Also:
ComponentImpl.castToString()

castToString

public String castToString(String defaultValue)
Description copied from interface: Castable
cast the castable value to a string, return the default value, when the method is not castable

Specified by:
castToString in interface Castable
Returns:
String representation of the Object
See Also:
Castable.castToString(java.lang.String)

clear

public void clear()
Description copied from interface: Collection
clears the collection

Specified by:
clear in interface Map
Specified by:
clear in interface Collection
See Also:
ComponentImpl.clear()

clone

public Object clone()
Specified by:
clone in interface Collection
Overrides:
clone in class Object
Returns:
this object cloned
See Also:
Collection.clone()

compareTo

public int compareTo(boolean b)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
ComponentImpl.compareTo(boolean)

compareTo

public int compareTo(DateTime dt)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
ComponentImpl.compareTo(railo.runtime.type.dt.DateTime)

compareTo

public int compareTo(double d)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
ComponentImpl.compareTo(double)

compareTo

public int compareTo(String str)
              throws PageException
Specified by:
compareTo in interface Castable
Throws:
PageException
See Also:
ComponentImpl.compareTo(java.lang.String)

containsKey

public boolean containsKey(String name)
Description copied from interface: Collection
contains this key

Specified by:
containsKey in interface Collection
Returns:
returns if collection has a key with given name
See Also:
StructSupport.containsKey(java.lang.String)

containsKey

public boolean containsKey(Collection.Key key)
Description copied from interface: Collection
contains this key

Specified by:
containsKey in interface Collection
Returns:
returns if collection has a key with given name
See Also:
ComponentImpl.containsKey(railo.runtime.type.Collection.Key)

duplicate

public Collection duplicate(boolean deepCopy)
Specified by:
duplicate in interface Collection
Specified by:
duplicate in interface Duplicable
See Also:
ComponentImpl.duplicate(boolean)

get

public Object get(PageContext pc,
                  Collection.Key key)
           throws PageException
Description copied from interface: Objects
return property or getter of the ContextCollection

Specified by:
get in interface Objects
Parameters:
pc - PageContext
key - Name of the Property
Returns:
return value of the Property
Throws:
PageException
See Also:
ComponentImpl.get(railo.runtime.PageContext, railo.runtime.type.Collection.Key)

get

public Object get(PageContext pc,
                  Collection.Key key,
                  Object defaultValue)
Description copied from interface: Objects
return property

Specified by:
get in interface Objects
Parameters:
pc - PageContext
key - Name of the Property
Returns:
return value of the Property
See Also:
ComponentImpl.get(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

get

public Object get(PageContext pc,
                  String name)
           throws PageException
Description copied from interface: Objects
return property or getter of the ContextCollection

Specified by:
get in interface Objects
Parameters:
pc - PageContext
name - Name of the Property
Returns:
return value of the Property
Throws:
PageException
See Also:
ComponentImpl.get(railo.runtime.PageContext, java.lang.String)

get

public Object get(PageContext pc,
                  String name,
                  Object defaultValue)
Description copied from interface: Objects
return property

Specified by:
get in interface Objects
Parameters:
pc - PageContext
name - Name of the Property
Returns:
return value of the Property
See Also:
ComponentImpl.get(railo.runtime.PageContext, java.lang.String, java.lang.Object)

get

public Object get(String name)
           throws PageException
Description copied from interface: Collection
return a value from the collection

Specified by:
get in interface Collection
Parameters:
name - key of the value to get
Returns:
value on key position
Throws:
PageException
See Also:
StructSupport.get(java.lang.String)

get

public Object get(String name,
                  Object defaultValue)
Description copied from interface: Collection
return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null

Specified by:
get in interface Collection
Parameters:
name - key of the value to get
Returns:
value on key position or null
See Also:
StructSupport.get(java.lang.String, java.lang.Object)

get

public Object get(Collection.Key key)
           throws PageException
Description copied from interface: Collection
return a value from the collection

Specified by:
get in interface Collection
Parameters:
key - key of the value to get must be lower case
Returns:
value on key position
Throws:
PageException
See Also:
ComponentImpl.get(railo.runtime.type.Collection.Key)

get

public Object get(Collection.Key key,
                  Object defaultValue)
Description copied from interface: Collection
return a value from the collection, if key doesn't exist, dont throw a exception, reeturns null

Specified by:
get in interface Collection
Parameters:
key - key of the value to get
Returns:
value on key position or null
See Also:
ComponentImpl.get(railo.runtime.type.Collection.Key, java.lang.Object)

getAbsName

public String getAbsName()
Specified by:
getAbsName in interface Component
Returns:
Returns the Name.
See Also:
ComponentImpl.getAbsName()

getBaseAbsName

public String getBaseAbsName()
Specified by:
getBaseAbsName in interface ComponentPro
See Also:
ComponentPro.getBaseAbsName()

isBasePeristent

public boolean isBasePeristent()
Specified by:
isBasePeristent in interface ComponentPro

getCallName

public String getCallName()
Specified by:
getCallName in interface Component
Returns:
Returns the Name.
See Also:
ComponentImpl.getCallName()

getDisplayName

public String getDisplayName()
Specified by:
getDisplayName in interface Component
Returns:
Returns the display name.
See Also:
ComponentImpl.getDisplayName()

getExtends

public String getExtends()
Specified by:
getExtends in interface Component
Returns:
Returns the Extends.
See Also:
ComponentImpl.getExtends()

getHint

public String getHint()
Specified by:
getHint in interface Component
Returns:
Returns the Hint.
See Also:
ComponentImpl.getHint()

getJavaAccessClass

public Class getJavaAccessClass(RefBoolean isNew)
                         throws PageException
Description copied from interface: Component
returns java class to the component interface (all UDFs), this class is generated dynamic when used

Specified by:
getJavaAccessClass in interface Component
Throws:
PageException
See Also:
ComponentImpl.getJavaAccessClass(railo.commons.lang.types.RefBoolean)

getMetaData

public Struct getMetaData(PageContext pc)
                   throws PageException
Description copied from interface: Component
returns Meta Data to the Component

Specified by:
getMetaData in interface Component
Returns:
meta data to component
Throws:
PageException
See Also:
ComponentImpl.getMetaData(railo.runtime.PageContext)

getName

public String getName()
Specified by:
getName in interface Component
Returns:
Returns the Name.
See Also:
ComponentImpl.getName()

getOutput

public boolean getOutput()
Specified by:
getOutput in interface Component
Returns:
Returns the output.
See Also:
ComponentImpl.getOutput()

instanceOf

public boolean instanceOf(String type)
Description copied from interface: Component
check if Component is instance of this type

Specified by:
instanceOf in interface Component
Parameters:
type - type to compare as String
Returns:
is instance of this type
See Also:
ComponentImpl.instanceOf(java.lang.String)

isInitalized

public boolean isInitalized()
Specified by:
isInitalized in interface Objects
Returns:
returns if embeded Object is init
See Also:
ComponentImpl.isInitalized()

isValidAccess

public boolean isValidAccess(int access)
Description copied from interface: Component
check if value is a valid access modifier constant

Specified by:
isValidAccess in interface Component
Returns:
is valid access
See Also:
ComponentImpl.isValidAccess(int)

iterator

public Iterator iterator()
Specified by:
iterator in interface Iteratorable
Returns:
return a Iterator for keys
See Also:
StructSupport.iterator()

keyIterator

public Iterator keyIterator()
Specified by:
keyIterator in interface Iteratorable
Returns:
return a Iterator for Keys as String
See Also:
ComponentImpl.keyIterator()

keys

public Collection.Key[] keys()
Specified by:
keys in interface Collection
Returns:
returns a string array of all keys in the collection
See Also:
ComponentImpl.keys()

keysAsString

public String[] keysAsString()
Specified by:
keysAsString in interface Collection
Returns:
returns a string array of all keys in the collection
See Also:
ComponentImpl.keysAsString()

remove

public Object remove(Collection.Key key)
              throws PageException
Description copied from interface: Collection
removes value from collection and return it when it exists, otherwise throws a exception

Specified by:
remove in interface Collection
Parameters:
key - key of the collection
Returns:
removed Object
Throws:
PageException
See Also:
ComponentImpl.remove(railo.runtime.type.Collection.Key)

removeEL

public Object removeEL(Collection.Key key)
Description copied from interface: Collection
removes value from collection and return it when it exists, otherwise returns null

Specified by:
removeEL in interface Collection
Parameters:
key - key of the collection
Returns:
removed Object
See Also:
ComponentImpl.removeEL(railo.runtime.type.Collection.Key)

set

public Object set(PageContext pc,
                  String name,
                  Object value)
           throws PageException
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
set in interface Objects
name - property name to set
value - value to insert
Returns:
value set to property
Throws:
PageException
See Also:
ComponentImpl.set(railo.runtime.PageContext, java.lang.String, java.lang.Object)

set

public Object set(PageContext pc,
                  Collection.Key key,
                  Object value)
           throws PageException
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
set in interface Objects
key - property name to set
value - value to insert
Returns:
value set to property
Throws:
PageException
See Also:
ComponentImpl.set(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

set

public Object set(String name,
                  Object value)
           throws PageException
Description copied from interface: Collection
sets a value to the collection

Specified by:
set in interface Collection
Parameters:
name - key of the new value
value - value to set
Returns:
value setted
Throws:
PageException
See Also:
StructSupport.set(java.lang.String, java.lang.Object)

set

public Object set(Collection.Key key,
                  Object value)
           throws PageException
Description copied from interface: Collection
sets a value to the collection

Specified by:
set in interface Collection
Parameters:
key - key of the new value
value - value to set
Returns:
value setted
Throws:
PageException
See Also:
ComponentImpl.set(railo.runtime.type.Collection.Key, java.lang.Object)

setEL

public Object setEL(PageContext pc,
                    String name,
                    Object value)
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
setEL in interface Objects
name - property name to set
value - value to insert
Returns:
value set to property
See Also:
ComponentImpl.setEL(railo.runtime.PageContext, java.lang.String, java.lang.Object)

setEL

public Object setEL(PageContext pc,
                    Collection.Key name,
                    Object value)
Description copied from interface: Objects
sets a property (Data Member) value of the object

Specified by:
setEL in interface Objects
name - property name to set
value - value to insert
Returns:
value set to property
See Also:
ComponentImpl.setEL(railo.runtime.PageContext, railo.runtime.type.Collection.Key, java.lang.Object)

setEL

public Object setEL(String name,
                    Object value)
Description copied from interface: Collection
sets a value to the collection, if key doesn't exist, dont throw a exception, returns null

Specified by:
setEL in interface Collection
Parameters:
name - key of the value to get
value - value to set
Returns:
value on key position or null
See Also:
StructSupport.setEL(java.lang.String, java.lang.Object)

setEL

public Object setEL(Collection.Key key,
                    Object value)
Description copied from interface: Collection
sets a value to the collection, if key doesn't exist, dont throw a exception, returns null

Specified by:
setEL in interface Collection
Parameters:
key - key of the value to get
value - value to set
Returns:
value on key position or null
See Also:
ComponentImpl.setEL(railo.runtime.type.Collection.Key, java.lang.Object)

size

public int size()
Specified by:
size in interface Map
Specified by:
size in interface Collection
Returns:
the size of the collection
See Also:
ComponentImpl.size()

toDumpData

public DumpData toDumpData(PageContext pageContext,
                           int maxlevel,
                           DumpProperties dp)
Description copied from interface: Dumpable
method to print out information to a object as HTML

Specified by:
toDumpData in interface Dumpable
Returns:
HTML print out
See Also:
railo.runtime.ComponentImpl#toDumpData(railo.runtime.PageContext, int)

getPage

public Page getPage()
Specified by:
getPage in interface Component

getPageSource

public PageSource getPageSource()
Specified by:
getPageSource in interface ComponentPro
See Also:
ComponentPro.getPageSource()

containsKey

public boolean containsKey(Object key)
Specified by:
containsKey in interface Map
See Also:
Map.containsKey(java.lang.Object)

entrySet

public Set entrySet()
Specified by:
entrySet in interface Map
See Also:
Map.entrySet()

get

public Object get(Object key)
Specified by:
get in interface Map
See Also:
Map.get(java.lang.Object)

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Map
See Also:
Map.isEmpty()

keySet

public Set keySet()
Specified by:
keySet in interface Map
See Also:
Map.keySet()

put

public Object put(Object key,
                  Object value)
Specified by:
put in interface Map
See Also:
java.util.Map#put(K, V)

putAll

public void putAll(Map map)
Specified by:
putAll in interface Map
See Also:
Map.putAll(java.util.Map)

remove

public Object remove(Object key)
Specified by:
remove in interface Map
See Also:
Map.remove(java.lang.Object)

values

public Collection values()
Specified by:
values in interface Map
See Also:
Map.values()

containsValue

public boolean containsValue(Object value)
Specified by:
containsValue in interface Map
See Also:
Map.containsValue(java.lang.Object)

valueIterator

public Iterator valueIterator()
Specified by:
valueIterator in interface Iteratorable
Returns:
return a Iterator for Values

getProperties

public Property[] getProperties(boolean onlyPeristent)
Description copied from interface: ComponentPro
return all properties from component

Specified by:
getProperties in interface ComponentPro
Parameters:
onlyPeristent - if true return only columns where attribute persistent is not set to false
Returns:
See Also:
railo.runtime.ComponentPro#getProperties()

getComponentScope

public ComponentScope getComponentScope()
Specified by:
getComponentScope in interface ComponentPro
See Also:
ComponentPro.getComponentScope()

contains

public boolean contains(PageContext pc,
                        Collection.Key key)
Specified by:
contains in interface ComponentPro
See Also:
ComponentPro.contains(railo.runtime.PageContext, railo.runtime.type.Collection.Key)

getMember

public Member getMember(int access,
                        Collection.Key key,
                        boolean dataMember,
                        boolean superAccess)
See Also:
railo.runtime.ComponentPro#getMember(int, railo.runtime.type.Collection.Key, boolean, boolean)

setProperty

public void setProperty(Property property)
                 throws PageException
Specified by:
setProperty in interface ComponentPro
Throws:
PageException
See Also:
ComponentPro.setProperty(railo.runtime.component.Property)

sizeOf

public long sizeOf()
Description copied from interface: Sizeable
return the size of the object

Specified by:
sizeOf in interface Sizeable
Returns:
size of the object
See Also:
Sizeable.sizeOf()

equalTo

public boolean equalTo(String type)
Specified by:
equalTo in interface ComponentPro

getWSDLFile

public String getWSDLFile()
Specified by:
getWSDLFile in interface ComponentPro
See Also:
ComponentPro.getWSDLFile()


Copyright © 2012 Railo