Skip to content

Commit

Permalink
[ui] Fixing mispelled class name.
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Apr 9, 2017
1 parent e9e0a03 commit fc6abde
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
3 changes: 1 addition & 2 deletions main/coreplugins/io.sarl.lang.mwe2/GenerateSARL2.mwe2
Expand Up @@ -16,7 +16,6 @@
* 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.
*/
module io.sarl.lang.GenerateSARL2

Expand Down Expand Up @@ -554,7 +553,7 @@ Workflow {
}
ui = {
bind = "org.eclipse.xtext.ui.editor.contentassist.IContentProposalPriorities"
to = "io.sarl.lang.ui.contentassist.general.SARLContentProposalProrities"
to = "io.sarl.lang.ui.contentassist.general.SARLContentProposalPriorities"
override = true
}
ui = {
Expand Down
Expand Up @@ -35,7 +35,7 @@
import io.sarl.lang.ui.builder.ProjectRelativeFileSystemAccess;
import io.sarl.lang.ui.contentassist.SARLContentAssistFactory;
import io.sarl.lang.ui.contentassist.SARLProposalProvider;
import io.sarl.lang.ui.contentassist.general.SARLContentProposalProrities;
import io.sarl.lang.ui.contentassist.general.SARLContentProposalPriorities;
import io.sarl.lang.ui.contentassist.imports.SARLImportingTypesProposalProvider;
import io.sarl.lang.ui.contentassist.javadoc.SARLJavaDocContentAssistProcessor;
import io.sarl.lang.ui.contentassist.templates.SARLTemplateContextType;
Expand Down Expand Up @@ -546,7 +546,7 @@ public Class<? extends IGeneratorConfigProvider2> bindIGeneratorConfigProvider2(

// contributed by io.sarl.lang.mwe2.binding.InjectionFragment2 [Bindings provided by SARL API]
public Class<? extends IContentProposalPriorities> bindIContentProposalPriorities() {
return SARLContentProposalProrities.class;
return SARLContentProposalPriorities.class;
}

// contributed by io.sarl.lang.mwe2.binding.InjectionFragment2 [Bindings provided by SARL API]
Expand Down
Expand Up @@ -82,7 +82,7 @@
import io.sarl.lang.sarl.SarlRequiredCapacity;
import io.sarl.lang.sarl.SarlSkill;
import io.sarl.lang.services.SARLGrammarKeywordAccess;
import io.sarl.lang.ui.contentassist.general.SARLContentProposalProrities;
import io.sarl.lang.ui.contentassist.general.SARLContentProposalPriorities;
import io.sarl.lang.ui.images.SARLImages;
import io.sarl.lang.util.Utils;

Expand Down Expand Up @@ -576,7 +576,7 @@ public void completeAOPMember_Guard(EObject model, Assignment assignment, Conten
this.keywords.getItKeyword(),
new StyledString(this.keywords.getItKeyword()),
this.imageHelper.getImage(this.images.forLocalVariable(0)),
SARLContentProposalProrities.CONTEXTUAL_KEYWORD_PRIORITY,
SARLContentProposalPriorities.CONTEXTUAL_KEYWORD_PRIORITY,
context.getPrefix(), context);
acceptor.accept(itProposal);
createLocalVariableAndImplicitProposals(body, context, acceptor);
Expand Down
Expand Up @@ -39,7 +39,7 @@
* @mavenartifactid $ArtifactId$
* @since 0.6
*/
public class SARLContentProposalProrities extends XbaseContentProposalPriorities {
public class SARLContentProposalPriorities extends XbaseContentProposalPriorities {

/** Priority for the contextual keywords, such as "it".
*/
Expand All @@ -64,7 +64,7 @@ public class SARLContentProposalProrities extends XbaseContentProposalPriorities
/**
* Constructor.
*/
public SARLContentProposalProrities() {
public SARLContentProposalPriorities() {
// Override the standard priorities.
this.crossReferencePriority = CROSSREFERENCE_PRIORITY;
this.keywordPriority = KEYWORD_PRIORITY;
Expand Down
Expand Up @@ -23,7 +23,9 @@

import org.eclipse.xtext.xbase.ui.contentassist.ImportingTypesProposalProvider;

/** Provider of types to be imported.
/** Provider of proposals for the types to be imported.
* This provider is part of the content assist mechanism. Its goal is not to provide
* features that are not types.
*
* @author $Author: sgalland$
* @version $FullVersion$
Expand All @@ -32,5 +34,7 @@
*/
@SuppressWarnings("all")
public class SARLImportingTypesProposalProvider extends ImportingTypesProposalProvider {
//



}

0 comments on commit fc6abde

Please sign in to comment.