/* * Copyright 2011 the original author or authors. * * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0 * * 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 org.codehaus.groovy.eclipse.dsl.inferencing.suggestions.writer; /** * * @author Nieraj Singh * @created 2011-08-09 */ public class SuggestionElementStatics { // XML Elements and attributes defining a suggestion public static final String PROJECT = "project"; public static final String DECLARING_TYPE = "declaringtype"; public static final String ROOT = "projectSuggestions"; public static final String METHOD = "method"; public static final String PROPERTY = "property"; public static final String PARAMETERS = "parameters"; public static final String PARAMETER = "parameter"; public static final String DOC = "doc"; // Attributes public static final String NAME_ATT = "name"; public static final String TYPE_ATT = "type"; public static final String IS_STATIC_ATT = "isStatic"; public static final String USE_NAMED_ARGUMENTS_ATT = "useNamedArguments"; public static final String IS_ACTIVE = "isActive"; }