Class ComponentModelScriptWrapper.SafetyWrapper
- java.lang.Object
- 
- com.inductiveautomation.perspective.gateway.script.ComponentModelScriptWrapper.SafetyWrapper
 
- 
- All Implemented Interfaces:
- PropertyTreeOwner
 - Enclosing class:
- ComponentModelScriptWrapper
 
 public static class ComponentModelScriptWrapper.SafetyWrapper extends java.lang.ObjectDelegates to the actual component, this prevents the scripting system from being able to call everything on ComponentModel, like startup(), shutdown, etc.Also gives us a good place to implement methods that make sense for script authors, that don't belong on the the model object, like more user friendly versions of getChild, findSibling, etc. 
- 
- 
Field SummaryFields Modifier and Type Field Description protected PerspectiveElementelement
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfocus()PerspectiveElementgetChild(java.lang.String name)java.util.Collection<Component>getChildren()java.lang.StringgetName()PagegetPage()ComponentgetParent()PropertyTreegetPropertyTreeOf(PropertyType propertyType)Fetch thePropertyTreeassociated with the givenPropertyTypeSessiongetSession()PerspectiveElementgetSibling(java.lang.String name)ViewgetView()voidprint(java.lang.String message)booleanrefreshBinding(java.lang.String propertyStr)voidremoveTooltip()voidrequestTooltip()
 
- 
- 
- 
Field Detail- 
elementprotected final PerspectiveElement element 
 
- 
 - 
Method Detail- 
getChildpublic PerspectiveElement getChild(java.lang.String name) 
 - 
getSiblingpublic PerspectiveElement getSibling(java.lang.String name) 
 - 
getChildrenpublic java.util.Collection<Component> getChildren() 
 - 
refreshBindingpublic boolean refreshBinding(java.lang.String propertyStr) throws java.lang.Throwable- Throws:
- java.lang.Throwable
 
 - 
focuspublic void focus() 
 - 
requestTooltippublic void requestTooltip() 
 - 
removeTooltippublic void removeTooltip() 
 - 
getParent@Nullable public Component getParent() 
 - 
getPropertyTreeOf@Nullable public PropertyTree getPropertyTreeOf(@Nullable PropertyType propertyType) Description copied from interface:PropertyTreeOwnerFetch thePropertyTreeassociated with the givenPropertyType- Specified by:
- getPropertyTreeOfin interface- PropertyTreeOwner
- Parameters:
- propertyType- The- PropertyTypeof the- PropertyTreewe want to fetch
- Returns:
- The PropertyTree or null if this PropertyTreeOwner does not manage a PropertyTree for the given PropertyType or if a null PropertyType is given
 
 - 
printpublic void print(java.lang.String message) 
 - 
getViewpublic View getView() 
 - 
getSessionpublic Session getSession() 
 - 
getPagepublic Page getPage() 
 - 
getNamepublic java.lang.String getName() 
 
- 
 
-