diff options
author | Tor Norbye <tnorbye@google.com> | 2012-03-20 13:59:54 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-03-21 11:21:45 -0700 |
commit | 253bfc9e4a7b3a0ffd42c7a364763e16db66edb2 (patch) | |
tree | 0802053f5dc6a6726c389c2606be61bc09dd4a66 /eclipse/plugins | |
parent | 7117fe536df6b9be019d628394ab1ab520a97c1f (diff) | |
download | sdk-253bfc9e4a7b3a0ffd42c7a364763e16db66edb2.zip sdk-253bfc9e4a7b3a0ffd42c7a364763e16db66edb2.tar.gz sdk-253bfc9e4a7b3a0ffd42c7a364763e16db66edb2.tar.bz2 |
Add plain XML editor for typeless XML files
This changeset adds a new editor delegate, "PlainXmlEditorDelegate",
which is used for XML files that have no associated resource
type. This is used instead of the OtherXmlEditorDelegate, which is
intended for resource files.
This changeset means that if you open the lint.xml file in the root of
the project, you no longer get a form (which wasn't helpful since we
don't have descriptors for that filetype).
Change-Id: I776f7dbe2b9fc994993b26524cc2965d014496aa
Diffstat (limited to 'eclipse/plugins')
2 files changed, 55 insertions, 4 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/CommonXmlEditor.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/CommonXmlEditor.java index 68c7807..5ee76c2 100755 --- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/CommonXmlEditor.java +++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/CommonXmlEditor.java @@ -28,6 +28,7 @@ import com.android.ide.eclipse.adt.internal.editors.drawable.DrawableEditorDeleg import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditorDelegate; import com.android.ide.eclipse.adt.internal.editors.menu.MenuEditorDelegate; import com.android.ide.eclipse.adt.internal.editors.otherxml.OtherXmlEditorDelegate; +import com.android.ide.eclipse.adt.internal.editors.otherxml.PlainXmlEditorDelegate; import com.android.ide.eclipse.adt.internal.editors.uimodel.UiElementNode; import com.android.ide.eclipse.adt.internal.editors.values.ValuesEditorDelegate; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager; @@ -155,13 +156,13 @@ public class CommonXmlEditor extends AndroidXmlEditor implements IShowEditorInpu if (mDelegate == null) { // We didn't find any editor. - // We'll use the OtherXmlEditorDelegate as a catch-all editor. + // We'll use the PlainXmlEditorDelegate as a catch-all editor. AdtPlugin.log(IStatus.INFO, "No valid Android XML Editor Delegate found for file %1$s [Res %2$s, type %3$s]", file.getFullPath(), resFolder, type); - mDelegate = new OtherXmlEditorDelegate(this); + mDelegate = new PlainXmlEditorDelegate(this); } } else if (editorInput instanceof IURIEditorInput) { String folderName = AdtUtils.getParentFolderName(editorInput); @@ -182,13 +183,13 @@ public class CommonXmlEditor extends AndroidXmlEditor implements IShowEditorInpu if (mDelegate == null) { // We didn't find any editor. - // We'll use the OtherXmlEditorDelegate as a catch-all editor. + // We'll use the PlainXmlEditorDelegate as a catch-all editor. AdtPlugin.log(IStatus.INFO, "No valid Android XML Editor Delegate found for file %1$s [Res %2$s, type %3$s]", ((IURIEditorInput) editorInput).getURI().toString(), folderName, type); - mDelegate = new OtherXmlEditorDelegate(this); + mDelegate = new PlainXmlEditorDelegate(this); } } diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/PlainXmlEditorDelegate.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/PlainXmlEditorDelegate.java new file mode 100644 index 0000000..5366988 --- /dev/null +++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/PlainXmlEditorDelegate.java @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2012 The Android Open Source Project + * + * Licensed under the Eclipse Public License, Version 1.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.eclipse.org/org/documents/epl-v10.php + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.ide.eclipse.adt.internal.editors.otherxml; + +import com.android.ide.eclipse.adt.internal.editors.common.CommonXmlDelegate; +import com.android.ide.eclipse.adt.internal.editors.common.CommonXmlEditor; + +import org.w3c.dom.Document; + +/** + * Plain XML editor with no form for files that have no associated descriptor data + */ +public class PlainXmlEditorDelegate extends CommonXmlDelegate { + + /** + * Creates the form editor for plain XML files. + */ + public PlainXmlEditorDelegate(CommonXmlEditor editor) { + super(editor, new OtherXmlContentAssist()); + editor.addDefaultTargetListener(); + } + + // ---- Base Class Overrides ---- + + @Override + public void delegateCreateFormPages() { + } + + @Override + public void delegateXmlModelChanged(Document xml_doc) { + } + + @Override + public void delegateInitUiRootNode(boolean force) { + } +} |