1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.databinding.tool.processing; 18 19 public class ErrorMessages { 20 public static final String INCLUDE_INSIDE_MERGE = 21 "Data binding does not support include elements as direct children of a merge element."; 22 public static final String UNDEFINED_VARIABLE = 23 "Identifiers must have user defined types from the XML file. %s is missing it"; 24 public static final String CANNOT_FIND_SETTER_CALL = 25 "Cannot find the setter for attribute '%s' with parameter type %s on %s."; 26 public static final String CANNOT_RESOLVE_TYPE = 27 "Cannot resolve type for %s"; 28 public static final String MULTI_CONFIG_LAYOUT_CLASS_NAME_MISMATCH = 29 "Classname (%s) does not match the class name defined for layout(%s) in other" 30 + " configurations"; 31 public static final String MULTI_CONFIG_VARIABLE_TYPE_MISMATCH = 32 "Variable declaration (%s - %s) does not match the type defined for layout(%s) in other" 33 + " configurations"; 34 public static final String MULTI_CONFIG_IMPORT_TYPE_MISMATCH = 35 "Import declaration (%s - %s) does not match the import defined for layout(%s) in other" 36 + " configurations"; 37 public static final String MULTI_CONFIG_ID_USED_AS_IMPORT = 38 "Cannot use the same id (%s) for a View and an include tag."; 39 public static final String ROOT_TAG_NOT_SUPPORTED = "android:tag is not supported on root " + 40 "elements of data bound layouts unless targeting API version 14 or greater. Value " + 41 "is '%s'"; 42 public static final String SYNTAX_ERROR = "Syntax error: %s"; 43 public static final String CANNOT_FIND_GETTER_CALL = 44 "Cannot find the getter for attribute '%s' with value type %s on %s."; 45 public static final String EXPRESSION_NOT_INVERTIBLE = 46 "The expression %s cannot cannot be inverted: %s"; 47 public static final String TWO_WAY_EVENT_ATTRIBUTE = 48 "The attribute %s is a two-way binding event attribute and cannot be assigned."; 49 public static final String CANNOT_FIND_ABSTRACT_METHOD = 50 "Cannot find the proper callback class for %s. Tried %s but it has %d abstract methods," 51 + " should have %d abstract methods."; 52 public static final String CALLBACK_ARGUMENT_COUNT_MISMATCH = "The callback %s#%s has %s" 53 + " methods but the lambda defined has %d. It should have either 0 or equal number of" 54 + " parameters."; 55 public static final String UNDEFINED_CALLBACK_ARGUMENT = 56 "%s is not defined. It should either be a variable defined in the layout file or a" 57 + " parameter of the Callback."; 58 public static final String DUPLICATE_CALLBACK_ARGUMENT = 59 "Callback arguments must have unique names. %s is used twice or more."; 60 public static final String CALLBACK_VARIABLE_NAME_CLASH = 61 "%s in the callback definition will override the variable %s (%s) in the callback" 62 + " scope."; 63 } 64