OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:editorref
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonMatchingStrategy.java
42
public boolean matches(IEditorReference
editorRef
, IEditorInput input) {
53
return m.matches(
editorRef
, fileInput);
56
// layout files we can't just use
editorRef
.getName(), since
59
if (!(
editorRef
.getName().endsWith(file.getName()) &&
60
editorRef
.getId().equals(CommonXmlEditor.ID))) {
66
// Per the IEditorMatchingStrategy documentation,
editorRef
.getEditorInput()
69
if (!(file.getName().equals(
editorRef
.getName()) &&
70
editorRef
.getId().equals(CommonXmlEditor.ID))) {
76
return input.equals(
editorRef
.getEditorInput());
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorMatchingStrategy.java
38
public boolean matches(IEditorReference
editorRef
, IEditorInput input) {
48
// Per the IEditorMatchingStrategy documentation,
editorRef
.getEditorInput()
51
if (!file.getName().equals(
editorRef
.getName()) ||
52
!
editorRef
.getId().equals(CommonXmlEditor.ID)) {
60
IEditorInput editorInput =
editorRef
.getEditorInput();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlEditor.java
[
all
...]
Completed in 4181 milliseconds