Package org.openbp.guiclient.event

Examples of org.openbp.guiclient.event.FileOpenEvent


        OpenEvent oe = null;
        String mimeType = openEventInfo [0].getMimeType();
        if (mimeType.startsWith("text/") && (underlyingObject instanceof Item))
        {
          FileOpenEvent foe = new FileOpenEvent(AssociationPlugin.this, openEventInfo [0].getEventName(), (String) object, new String [] { openEventInfo [0].getMimeType() });

          foe.setUnderlyingObject(underlyingObject);
          foe.setReadonly(readOnly);
          foe.setCreate(true);

          if (event instanceof FileOpenEvent)
          {
            foe.setColumnNumber(((FileOpenEvent) event).getColumnNumber());
            foe.setLineNumber(((FileOpenEvent) event).getLineNumber());
          }

          oe = foe;
        }
        else
View Full Code Here

TOP

Related Classes of org.openbp.guiclient.event.FileOpenEvent

Copyright © 2018 www.massapicom. 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.