Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.InvalidClassException


  public ReferenceTypeId getReferenceType (long id)
    throws InvalidClassException
  {
    ReferenceTypeId rid = (ReferenceTypeId) _ridTable.get (new Long (id));
    if (rid == null)
      throw new InvalidClassException (id);
    return rid;
  }
View Full Code Here


  public ExceptionOnlyFilter (ReferenceTypeId refId, boolean caught,
            boolean uncaught)
    throws InvalidClassException
  {
    if (refId != null && refId.getReference().get() == null)
      throw new InvalidClassException(refId.getId());

    _refId = refId;
    _caught = caught;
    _uncaught = uncaught;
  }
View Full Code Here

   */
  public FieldOnlyFilter (ReferenceTypeId refId, /*Field*/ReferenceTypeId fid)
    throws InvalidClassException, InvalidFieldException
  {
    if (refId == null || refId.getReference().get () == null)
      throw new InvalidClassException (refId.getId ());

    if (fid == null)
      throw new InvalidFieldException (fid.getId ());

    _refId = refId;
View Full Code Here

  public Class getType ()
    throws InvalidClassException
  {
    Class clazz = (Class) _reference.get ();
    if (clazz == null)
      throw new InvalidClassException (_id);

    return clazz;
  }
View Full Code Here

    throws InvalidClassException
  {
    Class cl = (Class) _reference.get ();

    if (cl == null)
      throw new InvalidClassException (getId ());

    return cl;
  }
View Full Code Here

{
  /* if (id == 0L)
   return new NullObjectId(); */
  ReferenceTypeId rid = (ReferenceTypeId) ridTable.get(new Long(id));
  if (rid == null)
   throw new InvalidClassException(id);
  return rid;
}
View Full Code Here

TOP

Related Classes of gnu.classpath.jdwp.exception.InvalidClassException

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.