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

TOTAL : ERRORS: 0, WARNINGS: 200

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/ceditor/ConfigureDesigner.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/ConfigureDesigner.java
 (at line 342)
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/ceditor/MultiSourceEditor.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/MultiSourceEditor.java
 (at line 111)
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/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 829)
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/SourceSelectionProvider.java : 16 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)
List selectedNodes = getSelectedNodes();
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/editor/SourceSelectionProvider.java
 (at line 139)
List newSelection = new ArrayList();
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 139)
List newSelection = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 150)
newSelection.add(textNode);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 155)
List selectedNodes = getSelectedNodes();
List is a raw type. 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)
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
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 157)
&& 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/dnd/palette/PaletteDropAdapter.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 63)
Runnable dropRunnable = new Runnable() {
The local variable dropRunnable is never read

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 83)
protected List getModelChildren() {
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/outline/DesignerOutlinePage.java
 (at line 84)
ArrayList children = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 84)
ArrayList children = 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/editor/outline/DesignerOutlinePage.java
 (at line 85)
children.add(contents);
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java
 (at line 37)
protected List getModelChildren() {
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/outline/TreeItemEditPart.java
 (at line 41)
return new ArrayList(Arrays.asList(children));
Type safety: The constructor ArrayList(Collection) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java
 (at line 41)
return new ArrayList(Arrays.asList(children));
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized

/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/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 128)
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/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/util/swt/WidgetLocator.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/util/swt/WidgetLocator.java
 (at line 23)
import org.eclipse.swt.widgets.Decorations;
The import org.eclipse.swt.widgets.Decorations is never used

/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 : 16 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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 133)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 147)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 164)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 164)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 165)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 166)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.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 20)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
2. 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.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
3. 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.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
4. 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.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
5. 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.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 25)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
7. 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.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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 27)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
9. 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.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 36)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 37)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 37)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 38)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 38)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 39)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 41)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 46)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 47)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
19. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 47)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 47)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 67)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 71)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 72)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
24. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 72)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 72)
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/v20100617/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 75)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 80)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 82)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 83)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
30. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 83)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
31. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 86)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
32. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 89)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
33. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 89)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
34. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 89)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 89)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 92)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
37. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 92)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
38. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 92)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
39. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 97)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
40. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 97)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
41. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 98)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
42. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 98)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
43. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 103)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
44. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 103)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
45. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 103)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
46. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
} 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
47. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
} 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
48. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 105)
} 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
49. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 116)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
50. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 116)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
51. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 119)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
52. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 119)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
53. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
54. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
55. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
56. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
57. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
58. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
59. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
60. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
61. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
62. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
63. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
64. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
65. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
66. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
67. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
68. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
69. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 124)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
70. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 128)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
71. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 128)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
72. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 129)
} 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
73. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 130)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
74. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 132)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
75. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 137)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
76. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 144)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
77. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 144)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
78. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 145)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
79. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 145)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
80. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 150)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
81. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 152)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
82. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 152)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
83. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 152)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
84. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 152)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
85. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 152)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
86. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 156)
region = sdRegion.getPrevious().getRegionAtCharacterOffset(offset - 1);
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
87. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 156)
region = sdRegion.getPrevious().getRegionAtCharacterOffset(offset - 1);
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
88. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
ITextRegion previousRegion = sdRegion.getRegionAtCharacterOffset(offset - 1);
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
89. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 161)
ITextRegion previousRegion = sdRegion.getRegionAtCharacterOffset(offset - 1);
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
90. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 162)
if ((previousRegion != null) && (previousRegion != region) && (previousRegion.getTextLength() == previousRegion.getLength())) {
Discouraged access: The method getTextLength() 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
91. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 162)
if ((previousRegion != null) && (previousRegion != region) && (previousRegion.getTextLength() == previousRegion.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
92. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 168)
if (offset > sdRegion.getStartOffset(region) + region.getTextLength()) {
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
93. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 168)
if (offset > sdRegion.getStartOffset(region) + region.getTextLength()) {
Discouraged access: The method getTextLength() 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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
94. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 172)
ITextRegion nextRegion = sdRegion.getRegionAtCharacterOffset(sdRegion.getStartOffset(region) + region.getLength());
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
95. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 172)
ITextRegion nextRegion = sdRegion.getRegionAtCharacterOffset(sdRegion.getStartOffset(region) + region.getLength());
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
96. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 172)
ITextRegion nextRegion = sdRegion.getRegionAtCharacterOffset(sdRegion.getStartOffset(region) + region.getLength());
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
97. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 172)
ITextRegion nextRegion = sdRegion.getRegionAtCharacterOffset(sdRegion.getStartOffset(region) + region.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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
98. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 183)
if ((region != null) && (region.getType() == DOMRegionContext.WHITE_SPACE)) {
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
99. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 183)
if ((region != null) && (region.getType() == DOMRegionContext.WHITE_SPACE)) {
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
100. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/text/StructuredTextHelper.java
 (at line 183)
if ((region != null) && (region.getType() == DOMRegionContext.WHITE_SPACE)) {
Discouraged access: The field WHITE_SPACE 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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 16)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 17)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 18)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
4. 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.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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 35)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 36)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 36)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 39)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 40)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 40)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 62)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 63)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 63)
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/v20100617/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 64)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 65)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/problems/DesignerProblemChecker.java
 (at line 65)
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/v20100617/plugins/org.eclipse.wst.xml.core_1.1.500.v201005271618.jar