|
org.eclipse.text.edits
Class MalformedTreeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.text.edits.MalformedTreeException
-
All Implemented Interfaces:
-
Serializable
-
public class MalformedTreeException
- extends
RuntimeException
Thrown to indicate that an edit got added to a parent edit
but the child edit somehow conflicts with the parent or
one of it siblings.
This class is not intended to be serialized.
-
Since:
- 3.0
-
See Also:
-
TextEdit.addChild(TextEdit) ,
TextEdit.addChildren(TextEdit[]) ,
Serialized Form
Methods inherited from class java.lang.
Throwable
|
fillInStackTrace,
getCause,
getLocalizedMessage,
getMessage,
getStackTrace,
initCause,
printStackTrace,
printStackTrace,
printStackTrace,
setStackTrace,
toString
|
MalformedTreeException
public MalformedTreeException(
TextEdit parent,
TextEdit child,
String message)
- Constructs a new malformed tree exception.
-
Parameters:
-
parent - the parent edit -
child - the child edit -
message - the detail message
getParent
public
TextEdit getParent()
- Returns the parent edit that caused the exception.
-
-
Returns:
- the parent edit
getChild
public
TextEdit getChild()
- Returns the child edit that caused the exception.
-
-
Returns:
- the child edit
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.
|
|