Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/MemberProposalInfo.java

Issue 69883003: Issue 249. Show documentation for highlighted code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/MemberProposalInfo.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/MemberProposalInfo.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/MemberProposalInfo.java
deleted file mode 100644
index 0ddfe79011431ec0d41e3f6a21cb69450a52b994..0000000000000000000000000000000000000000
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/MemberProposalInfo.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (c) 2011, the Dart project authors.
- *
- * Licensed under the Eclipse Public License v1.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/legal/epl-v10.html
- *
- * 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.google.dart.tools.ui.internal.text.completion;
-
-import com.google.dart.tools.core.completion.CompletionProposal;
-import com.google.dart.tools.core.model.DartElement;
-import com.google.dart.tools.core.model.DartModelException;
-import com.google.dart.tools.core.model.DartProject;
-import com.google.dart.tools.core.model.TypeMember;
-
-import org.eclipse.core.runtime.Assert;
-
-/**
- * Proposal info that computes the Dart doc lazily when it is queried.
- */
-public abstract class MemberProposalInfo extends ProposalInfo {
- /* configuration */
- protected final DartProject dartProject;
- protected final CompletionProposal fProposal;
-
- /* cache filled lazily */
- private boolean dartElementResolved = false;
-
- /**
- * Creates a new proposal info.
- *
- * @param project the Dart project to reference when resolving types
- * @param proposal the proposal to generate information for
- */
- public MemberProposalInfo(DartProject project, CompletionProposal proposal) {
- Assert.isNotNull(project);
- Assert.isNotNull(proposal);
- dartProject = project;
- fProposal = proposal;
- }
-
- /**
- * Returns the Dart element that this computer corresponds to, possibly <code>null</code>.
- *
- * @return the Dart element that this computer corresponds to, possibly <code>null</code>
- * @throws DartModelException
- */
- @Override
- public DartElement getJavaElement() throws DartModelException {
- if (!dartElementResolved) {
- dartElementResolved = true;
- fElement = resolveMember();
- }
- return fElement;
- }
-
- /**
- * Resolves the member described by the receiver and returns it if found. Returns
- * <code>null</code> if no corresponding member can be found.
- *
- * @return the resolved member or <code>null</code> if none is found
- * @throws DartModelException if accessing the Dart model fails
- */
- protected abstract TypeMember resolveMember() throws DartModelException;
-
-}

Powered by Google App Engine
This is Rietveld 408576698