* Contributors:
* Igor Malinin - initial contribution
*
- * $Id: XMLPlugin.java,v 1.1 2004-09-02 18:28:04 jsurfer Exp $
+ * $Id: XMLPlugin.java,v 1.2 2006-10-21 23:14:13 pombredanne Exp $
*/
package net.sourceforge.phpeclipse.xml.ui;
*/
public class XMLPlugin extends AbstractUIPlugin {
public static final String ICON_ELEMENT = "element_obj.gif"; //$NON-NLS-1$
-
+
// The shared instance.
private static XMLPlugin plugin;
private ResourceBundle resources;
private XMLTextTools xmlTextTools;
+
private DTDTextTools dtdTextTools;
/**
plugin = this;
try {
- resources = ResourceBundle.getBundle(
- "net.sourceforge.phpeclipse.xml.ui.XMLPluginResources"); //$NON-NLS-1$
+ resources = ResourceBundle
+ .getBundle("net.sourceforge.phpeclipse.xml.ui.XMLPluginResources"); //$NON-NLS-1$
} catch (MissingResourceException x) {
}
}
* Returns an image descriptor for the image corresponding to the specified
* key (which is the name of the image file).
*
- * @param key The key of the image
- * @return The descriptor for the requested image, or <code>null</code> if
+ * @param key
+ * The key of the image
+ * @return The descriptor for the requested image, or <code>null</code> if
* the image could not be found
*/
private ImageDescriptor getImageDescriptor(String key) {
return null;
}
}
-
-
}