import net.sourceforge.phpeclipse.phpeditor.php.PHPType;
import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IPath;
+//import org.eclipse.core.runtime.IPath;
import org.eclipse.jface.preference.IPreferenceStore;
import org.w3c.dom.Attr;
import org.w3c.dom.Document;
private static IPreferenceStore store;
- private static boolean hasXMLFileBeenRead = true;
+ //private static boolean hasXMLFileBeenRead = true;
// The following variable is used to hold the syntax from
// the suers custom file - if that file should be changed,
public static void readInSyntax() {
try {
- hasXMLFileBeenRead = true;
+// hasXMLFileBeenRead = true;
/*
* Attempt to read the syntax file from the metadata if this does
* not work, create metadata from default
*/
- File syntaxFile = getSyntaxFile();
+ /*File syntaxFile = getSyntaxFile();
if (syntaxFile.exists()) {
readFromFile(syntaxFile);
- } else {
+ } else {*/
readFromStream(PHPSyntaxRdr.class
.getResourceAsStream(PHPSYNTAX_FILE));
- saveToFile(syntaxFile);
- }
+ //saveToFile(syntaxFile);
+ /*}*/
/* Read the user-defined syntax file if it exists */
// String buffer = new
// String(store.getString(PHPeclipsePlugin.PHP_USERDEF_XMLFILE));
- if (store == null)
+ /*if (store == null)
store = PHPeclipsePlugin.getDefault().getPreferenceStore();
String buffer = new String(store
.getString(IPreferenceConstants.PHP_USERDEF_XMLFILE));
if (!(buffer.equals("") || buffer == null)) {
readFromFile(buffer);
- }
+ }*/
} catch (CoreException ce) {
ce.printStackTrace();
}
return userdefsyntaxdata;
}
- private static File getSyntaxFile() {
- IPath path = PHPeclipsePlugin.getDefault().getStateLocation();
- path = path.append(PHPSYNTAX_FILE);
- return path.toFile();
- }
+// private static File getSyntaxFile() {
+// IPath path = PHPeclipsePlugin.getDefault().getStateLocation();
+// path = path.append(PHPSYNTAX_FILE);
+// return path.toFile();
+// }
private static String getAttributeValue(NamedNodeMap attributes, String name) {
Node node = attributes.getNamedItem(name);