OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:editorInput
(Results
1 - 6
of
6
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
MatchingStrategy.java
49
IEditorInput
editorInput
= editorRef.getEditorInput();
50
if (
editorInput
instanceof FileEditorInput) {
51
FileEditorInput editorFileInput = (FileEditorInput)
editorInput
;
LayoutEditor.java
248
public void showEditorInput(IEditorInput
editorInput
) {
249
if (getEditorInput().equals(
editorInput
)) {
272
setInputWithNotify(
editorInput
);
506
IEditorInput
editorInput
= getEditorInput();
507
if (
editorInput
instanceof IFileEditorInput) {
508
IFileEditorInput fileInput = (IFileEditorInput)
editorInput
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java
158
IEditorInput
editorInput
= editor.getEditorInput();
159
if (
editorInput
instanceof FileEditorInput) {
160
IFile f = ((FileEditorInput)
editorInput
).getFile();
182
IEditorInput
editorInput
= editor.getEditorInput();
183
if (
editorInput
instanceof FileEditorInput) {
184
IFile f = ((FileEditorInput)
editorInput
).getFile();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java
314
public void init(IEditorSite site, IEditorInput
editorInput
) throws PartInitException {
315
if (!(
editorInput
instanceof IFileEditorInput))
317
super.init(site,
editorInput
);
AndroidXmlEditor.java
450
public void init(IEditorSite site, IEditorInput
editorInput
) throws PartInitException {
451
if (!(
editorInput
instanceof IFileEditorInput))
453
super.init(site,
editorInput
);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java
701
IEditorInput
editorInput
= editor.getEditorInput();
702
if (
editorInput
instanceof FileEditorInput) {
703
IFile file = ((FileEditorInput)
editorInput
).getFile();
[
all
...]
Completed in 6373 milliseconds