Compiler log for org.eclipse.e4.xwt.tools.ui.designer.core_0.9.1.v20100113-1830 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 208

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 73)
public boolean enabled; // Whether this sashinfo is enabled (i.e. if
The field CustomSashForm.SashInfo.enabled is never read locally
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 112)
protected List customSashFormListeners = null;
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 910)
customSashFormListeners = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 911)
customSashFormListeners.add(listener);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 933)
for (Iterator listenerItr = customSashFormListeners.iterator(); listenerItr.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/Designer.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/Designer.java
 (at line 809)
public Object getAdapter(Class adapter) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SelectionSynchronizer.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SelectionSynchronizer.java
 (at line 129)
Iterator iter = ((IStructuredSelection) selection).iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java : 17 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 66)
private List getSelectedNodes() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 75)
ISelection selection = textEditor.getSelectionProvider().getSelection();
The local variable selection is never read
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 76)
List selectedNodes = getSelectedNodes();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 140)
List newSelection = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 140)
List newSelection = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 151)
newSelection.add(textNode);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 156)
List selectedNodes = getSelectedNodes();
List is a raw type. References to generic type List<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 157)
if (selectedNodes != null && selectedNodes.containsAll(newSelection)
Type safety: The method containsAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 158)
&& newSelection.containsAll(selectedNodes)) {
Type safety: The method containsAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/ContentOutlinePage.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/ContentOutlinePage.java
 (at line 221)
Iterator it = child.getChildren().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/ContentOutlinePage.java
 (at line 232)
Iterator it = child.getChildren().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/OutlineContentProvider.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/OutlineContentProvider.java
 (at line 33)
return ((EditPart) parentElement).getChildren().toArray(EMPTY);
Type safety: The method toArray(Object[]) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java : 100 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 92)
String regionType = completionRegion.getType();
The local variable regionType is never read
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 106)
String regionType = completionRegion.getType();
The local variable regionType is never read
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 108)
IStructuredDocumentRegion sdRegion = ContentAssistUtils.getStructuredDocumentRegion(textViewer, documentPosition);
The local variable sdRegion is never read

/src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 45)
Iterator itr = constraints.keySet().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 74)
Iterator children = f.getChildren().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 177)
List children = containerFigure.getChildren();
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/model/ModelNotifySupport.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/model/ModelNotifySupport.java
 (at line 24)
private List<Notification> eventsQueue;
The field ModelNotifySupport.eventsQueue is never read locally

/src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/AbstractDiagramEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/AbstractDiagramEditPart.java
 (at line 47)
public Object getAdapter(Class key) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/VisualEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/VisualEditPart.java
 (at line 115)
for (Iterator iterator = getChildren().iterator(); iterator
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/style/SWTStyles.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/style/SWTStyles.java
 (at line 119)
StyleGroup[] styles = getStyles(Button.class);
The local variable styles is never read
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/style/SWTStyles.java
 (at line 120)
StyleGroup[] styles2 = getStyles(Label.class);
The local variable styles2 is never read
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/style/SWTStyles.java
 (at line 121)
StyleGroup[] styles3 = getStyles(Shell.class);
The local variable styles3 is never read

/src/org/eclipse/e4/xwt/tools/ui/designer/core/style/Style.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/style/Style.java
 (at line 17)
private Class<?> type;
The field Style.type is never read locally

/src/org/eclipse/e4/xwt/tools/ui/designer/core/util/image/ImageCollector.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/util/image/ImageCollector.java
 (at line 120)
private static void saveImage(Image image, String path) {
The method saveImage(Image, String) from the type ImageCollector is never used locally

/src/org/eclipse/e4/xwt/tools/ui/designer/core/visuals/swt/CompositeInfo.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/visuals/swt/CompositeInfo.java
 (at line 14)
import org.eclipse.e4.xwt.tools.ui.designer.core.util.swt.SWTUtil;
The import org.eclipse.e4.xwt.tools.ui.designer.core.util.swt.SWTUtil is never used

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java : 17 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 30)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 31)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 134)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 148)
IDOMNode textNode = designer.getModelBuilder().getTextNode(
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 165)
IDOMNode textNode = (IDOMNode) object;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 165)
IDOMNode textNode = (IDOMNode) object;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 166)
int nodeStartOffset = textNode.getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 167)
int nodeEndOffset = textNode.getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java : 42 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 16)
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 17)
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegion;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 18)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 19)
import org.eclipse.wst.xml.core.internal.regions.DOMRegionContext;
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 40)
IDOMNode treeNode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 40)
IDOMNode treeNode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 61)
ITextRegion completionRegion = StructuredTextHelper.getCompletionRegion(cursorPosition, treeNode);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 63)
String regionType = completionRegion.getType();
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 65)
if (regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 65)
if (regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE) {
Discouraged access: The field XML_TAG_ATTRIBUTE_VALUE from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 66)
return ((IDOMNode) treeNode).getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 66)
return ((IDOMNode) treeNode).getStartOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 76)
return treeNode.getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 86)
ITextRegion completionRegion = StructuredTextHelper.getCompletionRegion(cursorPosition, treeNode);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 88)
String regionType = completionRegion.getType();
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_PI_CLOSE from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
19. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_PI_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_CONTENT from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
24. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_CLOSE from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_ATTRIBUTE_VALUE from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_ATTRIBUTE_NAME from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
30. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
31. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_ATTRIBUTE_EQUALS from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
32. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
33. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_TAG_NAME from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
34. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 90)
if (regionType == DOMRegionContext.XML_PI_CLOSE || regionType == DOMRegionContext.XML_PI_OPEN || regionType == DOMRegionContext.XML_CONTENT || regionType == DOMRegionContext.XML_TAG_OPEN || regionType == DOMRegionContext.XML_TAG_CLOSE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_VALUE || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME || regionType == DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS || regionType == DOMRegionContext.XML_TAG_NAME || regionType == DOMRegionContext.XML_END_TAG_OPEN) {
Discouraged access: The field XML_END_TAG_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 97)
return ((IDOMNode) child).getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
37. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 97)
return ((IDOMNode) child).getEndOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
38. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 101)
if (regionType == DOMRegionContext.XML_END_TAG_OPEN && length == 0) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
39. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 101)
if (regionType == DOMRegionContext.XML_END_TAG_OPEN && length == 0) {
Discouraged access: The field XML_END_TAG_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
40. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 102)
IStructuredDocumentRegion endStructuredDocumentRegion = treeNode.getEndStructuredDocumentRegion();
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
41. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 102)
IStructuredDocumentRegion endStructuredDocumentRegion = treeNode.getEndStructuredDocumentRegion();
Discouraged access: The method getEndStructuredDocumentRegion() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
42. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/DropContext.java
 (at line 103)
if (cursorPosition == endStructuredDocumentRegion.getStart()) {
Discouraged access: The method getStart() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 34)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 35)
import org.eclipse.wst.xml.ui.internal.XMLUIPlugin;
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.ui_1.1.100.v200912170622.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 85)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.ui_1.1.100.v200912170622.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 85)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The method getDefault() from the type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.ui_1.1.100.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 85)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The method getTemplateContextRegistry() from the type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.ui_1.1.100.v200912170622.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 140)
StructuredTextViewer textViewer = designer.getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 145)
StructuredTextViewer textViewer = designer.getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 21)
import org.eclipse.wst.sse.core.internal.format.IStructuredFormatProcessor;
Discouraged access: The type IStructuredFormatProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 22)
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 23)
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocument;
Discouraged access: The type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 24)
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 25)
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegion;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 26)
import org.eclipse.wst.sse.ui.internal.FormatProcessorsExtensionReader;
Discouraged access: The type FormatProcessorsExtensionReader is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 27)
import org.eclipse.wst.sse.ui.internal.contentassist.ContentAssistUtils;
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 28)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 29)
import org.eclipse.wst.xml.core.internal.regions.DOMRegionContext;
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 37)
if (document instanceof IStructuredDocument) {
Discouraged access: The type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 38)
IStructuredDocument structDocument = (IStructuredDocument) document;
Discouraged access: The type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 38)
IStructuredDocument structDocument = (IStructuredDocument) document;
Discouraged access: The type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 39)
IStructuredModel model = StructuredModelManager.getModelManager().getModelForEdit(structDocument);
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 39)
IStructuredModel model = StructuredModelManager.getModelManager().getModelForEdit(structDocument);
Discouraged access: The method getModelForEdit(IStructuredDocument) from the type IModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 40)
IStructuredFormatProcessor processor = getFormatProcessor(CONTENT_TYPE);
Discouraged access: The type IStructuredFormatProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 42)
processor.formatModel(model);
Discouraged access: The method formatModel(IStructuredModel) from the type IStructuredFormatProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 47)
protected static IStructuredFormatProcessor getFormatProcessor(String contentTypeId) {
Discouraged access: The type IStructuredFormatProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 48)
return FormatProcessorsExtensionReader.getInstance().getFormatProcessor(contentTypeId);
Discouraged access: The type FormatProcessorsExtensionReader is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
19. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 48)
return FormatProcessorsExtensionReader.getInstance().getFormatProcessor(contentTypeId);
Discouraged access: The method getInstance() from the type FormatProcessorsExtensionReader is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 48)
return FormatProcessorsExtensionReader.getInstance().getFormatProcessor(contentTypeId);
Discouraged access: The method getFormatProcessor(String) from the type FormatProcessorsExtensionReader is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 68)
public static IDOMNode getCurrentNode(ITextViewer textViewer, Point absolutePosition) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 72)
public static IDOMNode getNode(ITextViewer textViewer, int documentPosition) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 73)
return (IDOMNode) ContentAssistUtils.getNodeAt(textViewer, documentPosition);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
24. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 73)
return (IDOMNode) ContentAssistUtils.getNodeAt(textViewer, documentPosition);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 73)
return (IDOMNode) ContentAssistUtils.getNodeAt(textViewer, documentPosition);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 90)
ITextRegion completionRegion = getCompletionRegion(documentPosition, node);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 91)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getStart() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 91)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getEnd() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 91)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getLength() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
30. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 92)
String regionType = completionRegion.getType();
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
31. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 104)
ITextRegion completionRegion = getCompletionRegion(documentPosition, node);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
32. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getStart() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
33. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getEnd() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
34. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
System.out.println(completionRegion.getStart() + ", " + completionRegion.getEnd() + ", " + completionRegion.getLength());
Discouraged access: The method getLength() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 106)
String regionType = completionRegion.getType();
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 108)
IStructuredDocumentRegion sdRegion = ContentAssistUtils.getStructuredDocumentRegion(textViewer, documentPosition);
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
37. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 108)
IStructuredDocumentRegion sdRegion = ContentAssistUtils.getStructuredDocumentRegion(textViewer, documentPosition);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
38. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 108)
IStructuredDocumentRegion sdRegion = ContentAssistUtils.getStructuredDocumentRegion(textViewer, documentPosition);
Discouraged access: The method getStructuredDocumentRegion(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
39. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 112)
static public ITextRegion getCompletionRegion(int documentPosition, Node domnode) {
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
40. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 117)
ITextRegion region = null;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
41. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 119)
IStructuredDocumentRegion flatNode = null;
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
42. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 120)
IDOMNode node = (IDOMNode) domnode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
43. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 120)
IDOMNode node = (IDOMNode) domnode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
44. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 123)
if (node.getStructuredDocument().getLength() == 0) {
Discouraged access: The method getStructuredDocument() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
45. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 126)
ITextRegion result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
46. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 126)
ITextRegion result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
47. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 126)
ITextRegion result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
48. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 126)
ITextRegion result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getStructuredDocument() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
49. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 129)
result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
50. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 129)
result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getStructuredDocument() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
51. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 129)
result = node.getStructuredDocument().getRegionAtCharacterOffset(offset).getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
52. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 134)
IStructuredDocumentRegion startTag = node.getStartStructuredDocumentRegion();
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
53. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 134)
IStructuredDocumentRegion startTag = node.getStartStructuredDocumentRegion();
Discouraged access: The method getStartStructuredDocumentRegion() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
54. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 135)
IStructuredDocumentRegion endTag = node.getEndStructuredDocumentRegion();
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
55. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 135)
IStructuredDocumentRegion endTag = node.getEndStructuredDocumentRegion();
Discouraged access: The method getEndStructuredDocumentRegion() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
56. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 140)
if ((startTag != null) && (startTag.getStartOffset() <= offset) && (offset < startTag.getStartOffset() + startTag.getLength())) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
57. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 140)
if ((startTag != null) && (startTag.getStartOffset() <= offset) && (offset < startTag.getStartOffset() + startTag.getLength())) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
58. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 140)
if ((startTag != null) && (startTag.getStartOffset() <= offset) && (offset < startTag.getStartOffset() + startTag.getLength())) {
Discouraged access: The method getLength() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
59. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 142)
} else if ((endTag != null) && (endTag.getStartOffset() <= offset) && (offset < endTag.getStartOffset() + endTag.getLength())) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
60. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 142)
} else if ((endTag != null) && (endTag.getStartOffset() <= offset) && (offset < endTag.getStartOffset() + endTag.getLength())) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
61. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 142)
} else if ((endTag != null) && (endTag.getStartOffset() <= offset) && (offset < endTag.getStartOffset() + endTag.getLength())) {
Discouraged access: The method getLength() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
62. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 153)
flatNode = node.getStructuredDocument().getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type IStructuredDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
63. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 153)
flatNode = node.getStructuredDocument().getRegionAtCharacterOffset(offset);
Discouraged access: The method getStructuredDocument() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
64. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 156)
if ((flatNode.getStartOffset() <= documentPosition) && (flatNode.getEndOffset() >= documentPosition)) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
65. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 156)
if ((flatNode.getStartOffset() <= documentPosition) && (flatNode.getEndOffset() >= documentPosition)) {
Discouraged access: The method getEndOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
66. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
67. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getPrevious() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
68. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getRegionAtCharacterOffset(int) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
69. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getRegionAtCharacterOffset(int) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
70. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
71. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
72. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The field XML_CONTENT from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
73. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
74. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getPrevious() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
75. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getLastRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
76. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
77. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The field XML_TAG_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
78. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getPrevious() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
79. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getLastRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
80. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
81. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
82. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
if ((offset == flatNode.getStartOffset()) && (flatNode.getPrevious() != null) && (((flatNode.getRegionAtCharacterOffset(documentPosition) != null) && (flatNode.getRegionAtCharacterOffset(documentPosition).getType() != DOMRegionContext.XML_CONTENT)) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_TAG_OPEN) || (flatNode.getPrevious().getLastRegion().getType() == DOMRegionContext.XML_END_TAG_OPEN))) {
Discouraged access: The field XML_END_TAG_OPEN from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
83. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 165)
region = flatNode.getPrevious().getLastRegion();
Discouraged access: The method getLastRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
84. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 165)
region = flatNode.getPrevious().getLastRegion();
Discouraged access: The method getPrevious() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
85. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 166)
} else if (flatNode.getEndOffset() == documentPosition) {
Discouraged access: The method getEndOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
86. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 167)
region = flatNode.getLastRegion();
Discouraged access: The method getLastRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
87. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 169)
region = flatNode.getFirstRegion();
Discouraged access: The method getFirstRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
88. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 174)
region = flatNode.getLastRegion();
Discouraged access: The method getLastRegion() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
89. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 181)
static protected ITextRegion getCompletionRegion(int offset, IStructuredDocumentRegion sdRegion) {
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
90. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 181)
static protected ITextRegion getCompletionRegion(int offset, IStructuredDocumentRegion sdRegion) {
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
91. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 182)
ITextRegion region = sdRegion.getRegionAtCharacterOffset(offset);
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
92. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 182)
ITextRegion region = sdRegion.getRegionAtCharacterOffset(offset);
Discouraged access: The method getRegionAtCharacterOffset(int) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
93. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 187)
if (sdRegion.getStartOffset(region) == offset) {
Discouraged access: The method getStartOffset(ITextRegion) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
94. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 189)
if ((sdRegion.getStartOffset(region) == sdRegion.getStartOffset()) && (sdRegion.getPrevious() != null) && (!sdRegion.getPrevious().isEnded())) {
Discouraged access: The method getStartOffset(ITextRegion) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
95. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 189)
if ((sdRegion.getStartOffset(region) == sdRegion.getStartOffset()) && (sdRegion.getPrevious() != null) && (!sdRegion.getPrevious().isEnded())) {
Discouraged access: The method getStartOffset() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
96. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 189)
if ((sdRegion.getStartOffset(region) == sdRegion.getStartOffset()) && (sdRegion.getPrevious() != null) && (!sdRegion.getPrevious().isEnded())) {
Discouraged access: The method isEnded() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
97. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 189)
if ((sdRegion.getStartOffset(region) == sdRegion.getStartOffset()) && (sdRegion.getPrevious() != null) && (!sdRegion.getPrevious().isEnded())) {
Discouraged access: The method getPrevious() from the type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar

/src/org/eclipse/e4/xwt/tools/ui/designer/core/model/IModelBuilder.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/model/IModelBuilder.java
 (at line 16)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/model/IModelBuilder.java
 (at line 38)
public IDOMNode getTextNode(Object model);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar

/src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java : 18 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 17)
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 18)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 19)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
Discouraged access: The type IDOMDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 20)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
Discouraged access: The type IDOMModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 21)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 37)
if (node instanceof IDOMNode) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 38)
startOffset = ((IDOMNode) node).getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 38)
startOffset = ((IDOMNode) node).getStartOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 41)
if (node instanceof IDOMNode) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 42)
endOffset = ((IDOMNode) node).getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 42)
endOffset = ((IDOMNode) node).getEndOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 46)
StructuredTextViewer textViewer = designer.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.ui_1.1.200.v200912212007.jar
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 64)
protected IDOMDocument getTextDocument(IDocument doc) {
Discouraged access: The type IDOMDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 65)
IStructuredModel model = StructuredModelManager.getModelManager().getExistingModelForRead(doc);
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 65)
IStructuredModel model = StructuredModelManager.getModelManager().getExistingModelForRead(doc);
Discouraged access: The method getExistingModelForRead(IDocument) from the type IModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.sse.core_1.1.500.v200912170622.jar
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 66)
if (model != null && model instanceof IDOMModel) {
Discouraged access: The type IDOMModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 67)
return ((IDOMModel) model).getDocument();
Discouraged access: The method getDocument() from the type IDOMModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 67)
return ((IDOMModel) model).getDocument();
Discouraged access: The type IDOMModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar