Examples of Interaction


Examples of nl.nuggit.swaf.interaction.Interaction

    @Autowired
    private InteractionFactory interactionFactory;

    public void handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        Context context = getContext(request);
        Interaction interaction = interactionFactory.create(context, request.getPathInfo());
        if (interaction != null) {
            ViewData view = interaction.execute(request, response);
            forwardToView(request, response, view);
        }
    }
View Full Code Here

Examples of oracle.AWAction.Interaction

   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here

Examples of oracle.AWAction.Interaction

   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here

Examples of oracle.AWAction.Interaction

   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here

Examples of oracle.AWAction.Interaction

      }catch(Exception e){
        result.setFailed(e.getMessage());
        e.printStackTrace();
        return result;
      }
      Interaction curInteraction = new Interaction();

        // Set the AWConnection to use when building the analytic workspace.
        curInteraction.setConnection(awConnection);

        // Create an BuildDatabase object.
        BuildDatabase myBuild =
                 (BuildDatabase)curInteraction.createAction("BUILDDATABASE");

        // Set the name of the analytic workspace.
        myBuild.setAWName(WebVariable.AW_GLOBAL_ID);//挂载分析空间global.global

        // Specify not running solves when building the database.
View Full Code Here

Examples of oracle.AWAction.Interaction

      }catch(Exception e){
        result.setFailed(e.getMessage());
        e.printStackTrace();
        return result;
      }
      Interaction curInteraction = new Interaction();

        // Set the AWConnection to use when building the analytic workspace.
        curInteraction.setConnection(awConnection);

        // Create an BuildDatabase object.
        BuildDatabase myBuild =
                 (BuildDatabase)curInteraction.createAction("BUILDDATABASE");

        // Set the name of the analytic workspace.
        myBuild.setAWName(WebVariable.AW_GLOBAL_ID);//挂载分析空间global.global

        // Specify not running solves when building the database.
View Full Code Here

Examples of org.biopax.paxtools.model.level3.Interaction

    for (Object o : getNodes())
    {
      Node node = (Node) o;

      Interaction inter = null;

      if (node instanceof ChbConversion)
      {
        inter = ((ChbConversion) node).getConversion();
      }
      else if (node instanceof ChbControl)
      {
        inter = ((ChbControl) node).getControl();
      }
      else if (node instanceof Hub)
      {
        inter = ((Hub) node).getInteraction();
      }

      if (inter != null)
      {
        if (!interactionMap.containsKey(inter))
        {
          interactionMap.put(inter, new ArrayList<GraphObject>());
        }
        interactionMap.get(inter).add(node);
      }
    }

    for (Object o : getEdges())
    {
      Interaction inter = null;

      if (o instanceof NonModulatedEffector)
      {
        inter = ((NonModulatedEffector) o).getControl();
      }
View Full Code Here

Examples of org.locationtech.udig.project.Interaction

     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @generated
     */
    public void setTypedKey(Interaction newKey) {
        Interaction oldKey = key;
        key = newKey;
        if (eNotificationRequired())
            eNotify(new ENotificationImpl(this, Notification.SET,
                    ProjectPackage.INTERACTION_TO_EBOOLEAN_OBJECT_MAP_ENTRY__KEY, oldKey, key));
    }
View Full Code Here

Examples of org.locationtech.udig.project.Interaction

*/
public class LayerInteractionProperty extends AbstractPropertyValue<ILayer> {

    @Override
    public boolean isTrue( ILayer layer, String text ) {
        Interaction interaction = Interaction.getInteraction(text);
        if( interaction == null ){
            return false; // unable to figure out Interaction to test
        }       
        return layer.getInteraction(interaction);
    }
View Full Code Here

Examples of org.locationtech.udig.project.Interaction

            IStructuredSelection selection = (IStructuredSelection) PlatformUI.getWorkbench()
                    .getActiveWorkbenchWindow().getSelectionService().getSelection();
            Layer layer = (Layer) selection.getFirstElement();
            ModalToolCategory modalToolCategory = category;
            if( category!=null ){
                Interaction key = Interaction.getInteraction(modalToolCategory.getId());
                boolean interaction = layer.getInteraction(key);
                menuItem.setSelection(interaction);
                menuItem.setText(modalToolCategory.getName());
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.