congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
IJIComObject.getInterfaceIdentifier
Code IndexAdd Tabnine to your IDE (free)

How to use
getInterfaceIdentifier
method
in
org.jinterop.dcom.core.IJIComObject

Best Java code snippets using org.jinterop.dcom.core.IJIComObject.getInterfaceIdentifier (Showing top 20 results out of 315)

origin: org.openscada.jinterop/org.openscada.jinterop.core

/**
 * Returns the <i>IID</i> of this object
 * 
 * @return String representation of 128 bit uuid.
 */
@Override
public String getInterfaceIdentifier ()
{
  return this.comObject.getInterfaceIdentifier ();
}
origin: org.kohsuke.jinterop/j-interop

/** Returns the <i>IID</i> of this object
 * 
 * @return String representation of 128 bit uuid.
 */
public String getInterfaceIdentifier()
{
  return comObject.getInterfaceIdentifier();
}
 
origin: org.jinterop/j-interop

/** Returns the <i>IID</i> of this object
 * 
 * @return String representation of 128 bit uuid.
 */
public String getInterfaceIdentifier()
{
  return comObject.getInterfaceIdentifier();
}
 
origin: org.jinterop/j-interop

public void UpdatePageStatus(
          IJIComObject pDisp, 
          JIVariant nPage, 
          JIVariant fDone)
{
  System.out.println("UpdatePageStatus - > " + pDisp.getInterfaceIdentifier());
}
origin: org.kohsuke.jinterop/j-interop

public void UpdatePageStatus(
          IJIComObject pDisp, 
          JIVariant nPage, 
          JIVariant fDone)
{
  System.out.println("UpdatePageStatus - > " + pDisp.getInterfaceIdentifier());
}
origin: org.jinterop/j-interop

public void DocumentComplete(
          IJIComObject pDisp, 
          JIVariant URL) throws JIException
{
  System.out.println("DocumentComplete -> " + pDisp.getInterfaceIdentifier() + " , "  + URL);
}
 
origin: org.kohsuke.jinterop/j-interop

public void DocumentComplete(
          IJIComObject pDisp, 
          JIVariant URL) throws JIException
{
  System.out.println("DocumentComplete -> " + pDisp.getInterfaceIdentifier() + " , "  + URL);
}
 
origin: org.openscada.jinterop/org.openscada.jinterop.core

public void DocumentComplete ( final IJIComObject pDisp, final JIVariant URL ) throws JIException
{
  System.out.println ( "DocumentComplete -> " + pDisp.getInterfaceIdentifier () + " , " + URL );
}
origin: org.openscada.jinterop/org.openscada.jinterop.core

public void PrintTemplateTeardown ( final IJIComObject pDisp )
{
  System.out.println ( "PrintTemplateTeardown - > " + pDisp.getInterfaceIdentifier () );
}
origin: org.jinterop/j-interop

public void PrintTemplateInstantiation(IJIComObject pDisp)
{
  System.out.println("PrintTemplateInstantiation - > " + pDisp.getInterfaceIdentifier());
}

origin: org.kohsuke.jinterop/j-interop

public void PrintTemplateTeardown(IJIComObject pDisp)
{
  System.out.println("PrintTemplateTeardown - > " + pDisp.getInterfaceIdentifier());
}

origin: org.openscada.jinterop/org.openscada.jinterop.core

public void PrintTemplateInstantiation ( final IJIComObject pDisp )
{
  System.out.println ( "PrintTemplateInstantiation - > " + pDisp.getInterfaceIdentifier () );
}
origin: org.jinterop/j-interop

public void PrintTemplateTeardown(IJIComObject pDisp)
{
  System.out.println("PrintTemplateTeardown - > " + pDisp.getInterfaceIdentifier());
}

origin: org.openscada.jinterop/org.openscada.jinterop.core

public void UpdatePageStatus ( final IJIComObject pDisp, final JIVariant nPage, final JIVariant fDone )
{
  System.out.println ( "UpdatePageStatus - > " + pDisp.getInterfaceIdentifier () );
}
origin: org.kohsuke.jinterop/j-interop

public void PrintTemplateInstantiation(IJIComObject pDisp)
{
  System.out.println("PrintTemplateInstantiation - > " + pDisp.getInterfaceIdentifier());
}

origin: org.openscada.jinterop/org.openscada.jinterop.core

public static IJIComObject narrowObject ( final IJIComObject comObject ) throws JIException
{
  IJIComObject retval = comObject;
  final String IID = comObject.getInterfaceIdentifier ();
  if ( IID.equalsIgnoreCase ( IID_IDispatch ) )// && iUnknown.isIDispatchSupported())
  {
    retval = new JIDispatchImpl ( retval );
  }
  else if ( IID.equalsIgnoreCase ( IID_ITypeInfo ) )// && iUnknown.isIDispatchSupported())
  {
    retval = new JITypeInfoImpl ( retval );
  }
  else if ( IID.equalsIgnoreCase ( IID_ITypeLib ) )// && iUnknown.isIDispatchSupported())
  {
    retval = new JITypeLibImpl ( retval );
  }
  else if ( IID.equalsIgnoreCase ( IID_IEnumVariant ) )// && iUnknown.isIDispatchSupported())
  {
    retval = new JIEnumVARIANTImpl ( retval );
  }
  return retval;
}
origin: org.openscada.jinterop/org.openscada.jinterop.core

public void NavigateComplete2 ( IJIComObject pDisp, final JIVariant URL ) throws JIException
{
  pDisp = JIObjectFactory.narrowObject ( pDisp );
  JIVariant realURL = URL;
  while ( realURL.isByRefFlagSet () )
  {
    realURL = realURL.getObjectAsVariant ();
  }
  System.out.println ( "NavigateComplete2 -> " + pDisp.getInterfaceIdentifier () + " , " + realURL.getObjectAsString ().getString () );
}
origin: org.jinterop/j-interop

public void NavigateComplete2(
           IJIComObject pDisp, 
          JIVariant URL) throws JIException
{
  pDisp = JIObjectFactory.narrowObject(pDisp);
  JIVariant realURL = URL;
  while (realURL.isByRefFlagSet())
  {
    realURL = realURL.getObjectAsVariant();
  }
  System.out.println("NavigateComplete2 -> " + pDisp.getInterfaceIdentifier() + " , "  + realURL.getObjectAsString().getString());
}
 
origin: org.kohsuke.jinterop/j-interop

public void NavigateComplete2(
           IJIComObject pDisp, 
          JIVariant URL) throws JIException
{
  pDisp = JIObjectFactory.narrowObject(pDisp);
  JIVariant realURL = URL;
  while (realURL.isByRefFlagSet())
  {
    realURL = realURL.getObjectAsVariant();
  }
  System.out.println("NavigateComplete2 -> " + pDisp.getInterfaceIdentifier() + " , "  + realURL.getObjectAsString().getString());
}
 
origin: org.jinterop/j-interop

/**
 * @exclude
 * @param comObject
 * @param identifier
 * @throws JIException
 */
public static void detachEventHandler(IJIComObject comObject, String identifier) throws JIException
{
  Object[] connectionInfo = comObject.internal_getConnectionInfo(identifier);
  if (connectionInfo == null)
  {
    throw new JIException(JIErrorCodes.JI_CALLBACK_INVALID_ID);
  }
  
  if (JISystem.getLogger().isLoggable(Level.INFO))
  {
    JISystem.getLogger().info("Detaching event handler for  comObject: " + comObject.getInterfaceIdentifier() + " , identifier: " + identifier);
  }
  
  IJIComObject connectionPointer = (IJIComObject)connectionInfo[0];
  
  //first use the cookie to detach.
  JICallBuilder object = new JICallBuilder(true);
  object.setOpnum(3);
  object.addInParamAsInt(((Integer)connectionInfo[1]).intValue(),JIFlags.FLAG_NULL);
  connectionPointer.call(object);
  //now release the connectionPointer.
  connectionPointer.release();
}
 
org.jinterop.dcom.coreIJIComObjectgetInterfaceIdentifier

Javadoc

Returns the COM IID of this object

Popular methods of IJIComObject

  • queryInterface
    Retrieve interface references based on iid. Make sure to narrow before casting to the expected type
  • call
    Refer #call(JICallBuilder) for details on this method.
  • getAssociatedSession
    Returns session associated with this object.
  • addRef
    Increases the reference count on the COM server by 5 (currently hard coded). The developer should r
  • getInstanceLevelSocketTimeout
    Returns the socket timeout set at the instance level. This timeout value is used during all socket l
  • getIpid
    Unique 128 bit uuid representing the interface on the COM server. This value can and should be used
  • getUnreferencedHandler
    Returns the IJIUnreferenced handler associated with this object.
  • internal_getConnectionInfo
    Framework Internal Returns the ConnectionPoint (IJIComObject) and it's Cookie.
  • internal_getInterfacePointer
    Framework Internal Returns self Interface pointer.
  • internal_removeConnectionInfo
    Framework Internal Returns and Removes the connection info from the internal map.
  • internal_setConnectionInfo
    Adds a connection point information and it's cookie to the connectionPointMap internally. To be call
  • internal_setDeffered
    Framework Internal
  • internal_setConnectionInfo,
  • internal_setDeffered,
  • isDispatchSupported,
  • isLocalReference,
  • registerUnreferencedHandler,
  • release,
  • setInstanceLevelSocketTimeout,
  • unregisterUnreferencedHandler

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • getResourceAsStream (ClassLoader)
  • setRequestProperty (URLConnection)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • JComboBox (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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