congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
com.eas.script
Code IndexAdd Tabnine to your IDE (free)

How to use com.eas.script

Best Java code snippets using com.eas.script (Showing top 20 results out of 315)

origin: com.eas.platypus/platypus-js-core

@ScriptFunction(jsDoc = ""
    + "/**\n"
    + " * Value of changed property.\n"
    + " */")
public Object getValue() {
  return Scripts.getSpace().toJs(value);
}
origin: com.eas.platypus/platypus-js-forms

protected void bindList() {
  if (displayList != null && Scripts.isInitialized()) {
    boundToList = Scripts.getSpace().listen(displayList, "length", new AbstractJSObject() {
      @Override
      public Object call(Object thiz, Object... args) {
        enqueueListChanged();
        return null;
      }
    });
  }
}
origin: com.eas.platypus/platypus-js-forms

protected void bindCursor(JSObject aModelData) {
  if (aModelData != null) {
    boundToCursor = Scripts.getSpace().listen(aModelData, cursorProperty, new AbstractJSObject() {
      @Override
      public Object call(Object thiz, Object... args) {
        ModelGrid.this.invalidate();
        ModelGrid.this.repaint();
        return null;
      }
    });
  }
}
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ""
    + "/**\n"
    + " * Event that is fired when one of the components is selected in this card pane.\n"
    + " */")
@EventMethod(eventClass = ItemEvent.class)
public JSObject getOnItemSelected() {
  return onItemSelected;
}
origin: com.eas.platypus/platypus-js-core

public ChangeValue(String aName, Object aValue) {
  name = aName;
  value = Scripts.getSpace() != null ? Scripts.getSpace().toJava(aValue) : aValue;
}
origin: com.eas.platypus/platypus-js-common-utils

public void process(Runnable aTask) {
  Scripts.LocalContext context = Scripts.getContext();
  process(context, aTask);
}
origin: com.eas.platypus/platypus-js-common-utils

  @Override
  public void setPublished(JSObject aValue) {
    if (published != null) {
      throw new AlreadyPublishedException();
    }
    published = aValue;
  }
}
origin: com.eas.platypus/platypus-js-core

@ScriptFunction(jsDoc = SOURCE_JS_DOC)
@Override
public HasPublished getSource() {
  return source;
}
origin: com.eas.platypus/platypus-js-datamodel

@ScriptFunction(jsDoc = ON_REQUIRED_JSDOC)
@EventMethod(eventClass = PublishedSourcedEvent.class)
public JSObject getOnRequeried() {
  return onRequeried;
}
origin: com.eas.platypus/platypus-js-forms

protected void bind() {
  if (data != null && Scripts.isInitialized()) {
    boundToData = Scripts.getSpace().listen(data, "length", new AbstractJSObject() {
      @Override
      public Object call(Object thiz, Object... args) {
        enqueueElementsChanged();
        return null;
      }
    });
  }
}
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ""
    + "/**\n"
    + " * Event that is fired when one of the components is selected in this group.\n"
    + " */")
@EventMethod(eventClass = ItemEvent.class)
public JSObject getOnItemSelected() {
  return onItemSelected;
}
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_COMPONENT_ADDED_JSDOC)
@EventMethod(eventClass = ContainerEvent.class)
public JSObject getOnComponentAdded();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_MOUSE_WHEEL_MOVED_JSDOC)
@EventMethod(eventClass = MouseEvent.class)
public JSObject getOnMouseWheelMoved();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_ACTION_PERFORMED_JSDOC)
@EventMethod(eventClass = ActionEvent.class)
public JSObject getOnActionPerformed();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_COMPONENT_RESIZED_JSDOC)
@EventMethod(eventClass = ComponentEvent.class)
public JSObject getOnComponentResized();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_COMPONENT_SHOWN_JSDOC)
@EventMethod(eventClass = ComponentEvent.class)
public JSObject getOnComponentShown();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_COMPONENT_REMOVED_JSDOC)
@EventMethod(eventClass = ContainerEvent.class)
public JSObject getOnComponentRemoved();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_MOUSE_CLICKED_JSDOC)
@EventMethod(eventClass = MouseEvent.class)
public JSObject getOnMouseClicked();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_MOUSE_PRESSED_JSDOC)
@EventMethod(eventClass = MouseEvent.class)
public JSObject getOnMousePressed();
origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ON_MOUSE_RELEASED_JSDOC)
@EventMethod(eventClass = MouseEvent.class)
public JSObject getOnMouseReleased();
com.eas.script

Most used classes

  • Scripts$Space
  • Scripts
  • AlreadyPublishedException
    An exception to notify an attempt to set a publisher for an object more than once.
  • ScriptFunction
  • JsDoc$Tag
    An JsDoc tag, can be used as annotation
  • Scripts$LocalContext,
  • EventMethod,
  • HasPublished,
  • JsDoc,
  • JsObjectException,
  • ParsedJs,
  • ScriptObj,
  • Scripts$AmdDefine,
  • Scripts$Pending,
  • Scripts$1,
  • Scripts$GetOffsetNodeVisitorSupport
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now