com.nodelab.action

Type HourScene

com.nodelab.0.10020
Instance of Type
Inheriting from Action

Type dataValue
org.uninode.Type.displayPatterna {att:org.uninode.Node.type}
org.uninode.Listable.resourcesReference[org.uninode.Listable.resources] of com.nodelab.action.HourScene

Attribute summaryDefined inUninode® IdPropertiesDefault
Reference[org.uninode.Listable.resources]resourcesListableorg.uninode.0.2001type
StringtoString
This is the display string.
Nodeorg.uninode.0.102
Typetype
The type of an object determines the behaviour and attributes of the object.
Nodeorg.uninode.0.101
StringuriNodeorg.uninode.0.103

Method summaryDefined inOverridesProperties
voidactivateListable
voiddesignEditor(WidgetWorkspace ws)Listable
StringresourceStringListableintrospection

Script summary
com.nodelab.0.10374
/*
constructor() {
  Action:();
}
class Boolean isResourceOf(Listable node, Symbol aspect) {
  if (aspect == #actions) return true;
  false;
}
class String resourceLabel() {
  "hour gig";
}
Void action(Mixable mix) {
  Source src = Source{mix};
  Gig gig = new Gig(ViewDiagramStandard);
  Part part = gig.addSource(src);
  part.setColor(Color.blue);
  ConditionHistory cond = 
    ConditionHistory{gig.view.conditionType(ConditionHistory)};
  cond.setFrom(Time.now.addDays(-20));
  cond.setResolution(#hour);
  gig.activate();
}
*/