Examples of open()


Examples of Framework.File.open()

        EventManager.startEventLoop();
        try {
            EventRegistration TaskHandle_Shutdown_langThreadcurrentThread = ClientEventManager.register( Thread.currentThread(), "Shutdown" );
            File f = new File();
            f.setLocalName(new TextData("c:\\sdiWindow.txt"));
            f.open(Framework.Constants.SP_AM_WRITE, false);
            UIutils.traceWidget(this);
            f.close();


            while (true) {
View Full Code Here

Examples of Framework.MemoryStream.open()

            MemoryStream dataWire = null;

            dataWire = this.convertMemoryStream(this, this.data, false);

            int streamOffset = dataWire.getOffset();
            dataWire.open(true);
            dataWire.seek(0);
            dataWire.readBinary(binData);
            dataWire.seek(streamOffset);
            dataWire.close();
        }
View Full Code Here

Examples of ag.ion.noa4e.editor.ui.dialogs.OfficeSaveAsDialog.open()

    if (path != null)
      dialog.setOriginalFile(path);
     
    dialog.create();   
     
    if (dialog.open() == Window.CANCEL) {
      return;
    }
     
    final IPath filePath = dialog.getResult();   
    final IFilter filter = dialog.getFilter();
View Full Code Here

Examples of aleph.GlobalObject.open()

    long start = System.currentTimeMillis();
    for (Iterator e = PE.allPEs(); e.hasNext(); ) {
      fork.start((PE) e.next(), join);
    }
    join.waitFor();
    Counter counter = (Counter) global.open("r");
    System.out.println(PE.numPEs() + " PEs, Final value is " + counter.value);
    System.out.println("Elapsed time: " +
           ((double) (System.currentTimeMillis() - start)) / 1000.0
           + " seconds");
  }
View Full Code Here

Examples of aleph.dir.DirectoryManager.open()

      String node = array[index];
      if (node == null) {
        return notFound;
      }
      DirectoryManager locator = HyFlow.getLocator();
      return ((DistributedImmutableHashMap) locator.open(node, "r")).find(shift+5, hash, key, notFound);
    }

    @Override
    public DistributedImmutableHashMap put(int shift, int hash, Object key, Object value, Box addedLeaf) {
      DirectoryManager locator = HyFlow.getLocator();
View Full Code Here

Examples of anvil.script.ParameterListDeclaration.open()

    if (params != null) {
      ExpressionParser p = new ExpressionParser(parser, parser.getLocation(), params);
      p.parseParameterListDeclaration(parameters);
   
    } else {
      parameters.open();
      int n = tag.getLength();
      for(int i=0; i<n; i++) {
        String name = tag.getName(i);
        if (name.equalsIgnoreCase("param")) {
View Full Code Here

Examples of bibliothek.gui.dock.common.action.panel.DialogWindow.open()

    SwingUtilities.convertPointToScreen( location, item );
   
    DialogWindow window = createDialogWindow( item );
    window.setUndecorated( true );
    window.setContent( getContent() );
    window.open( location.x, location.y );
   
    openPopup( window );
  }
 
  /**
 
View Full Code Here

Examples of bm.core.res.ResourceProvider.open()

        final int count = providers.size();
        for( int i = 0; i < count; i++ )
        {
            final ResourceProvider provider = (ResourceProvider)
                    providers.elementAt( i );
            provider.open();
        }
    }

    /**
     * Close providers previously opened.
View Full Code Here

Examples of bm.db.Database.open()

                               null;

                    case OPEN:
                        if( db != null )
                        {
                            db.open();
                        }
                        else
                        {
                            return null;
                        }
View Full Code Here

Examples of bm.db.Table.open()

                                    ),
                                    target
                            );

                        case OPEN               :
                            table.open();
                            break;

                        case CLOSE              :
                            table.close();
                            break;
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.