Package org.gudy.azureus2.plugins.platform

Examples of org.gudy.azureus2.plugins.platform.PlatformManagerException


  }

  // @see org.gudy.azureus2.platform.PlatformManager#copyFilePermissions(java.lang.String, java.lang.String)
  public void copyFilePermissions(String from_file_name, String to_file_name)
      throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here


  }

  // @see org.gudy.azureus2.platform.PlatformManager#createProcess(java.lang.String, boolean)
  public void createProcess(String command_line, boolean inherit_handles)
      throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

  public void dispose() {
  }

  // @see org.gudy.azureus2.platform.PlatformManager#getApplicationCommandLine()
  public String getApplicationCommandLine() throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

    return( null );
  }
 
  // @see org.gudy.azureus2.platform.PlatformManager#getVersion()
  public String getVersion() throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

    return capabilitySet.contains(capability);
  }

  // @see org.gudy.azureus2.platform.PlatformManager#isApplicationRegistered()
  public boolean isApplicationRegistered() throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

  }

  // @see org.gudy.azureus2.platform.PlatformManager#performRecoverableFileDelete(java.lang.String)
  public void performRecoverableFileDelete(String file_name)
      throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

  }

  // @see org.gudy.azureus2.platform.PlatformManager#ping(java.net.InetAddress, java.net.InetAddress, org.gudy.azureus2.platform.PlatformManagerPingCallback)
  public void ping(InetAddress interface_address, InetAddress target,
      PlatformManagerPingCallback callback) throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }

  // @see org.gudy.azureus2.platform.PlatformManager#registerApplication()
  public void registerApplication() throws PlatformManagerException {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

  public File
  getVMOptionFile()
 
    throws PlatformManagerException
  {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

  public String[]
  getExplicitVMOptions()
             
     throws PlatformManagerException
  {
    throw new PlatformManagerException(ERR_UNSUPPORTED);
  }
View Full Code Here

TOP

Related Classes of org.gudy.azureus2.plugins.platform.PlatformManagerException

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.