Changeset 7606
- Timestamp:
- Feb 27, 2019, 9:09:14 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.classpath
r7528 r7606 17 17 <classpathentry kind="lib" path="lib/dist/tar.jar"/> 18 18 <classpathentry kind="lib" path="lib/dist/commons-io-1.4.jar"/> 19 <classpathentry kind="lib" path="lib/dist/json-simple-1.1.1.jar"/>20 19 <classpathentry kind="lib" path="lib/svn/svnant-1.4dev.jar"/> 21 20 <classpathentry kind="lib" path="lib/dist/jdom-2.0.6.jar"/> … … 35 34 <classpathentry kind="lib" path="lib/dist/commons-collections4-4.2.jar"/> 36 35 <classpathentry kind="lib" path="lib/dist/bcprov-jdk15on-160.jar"/> 36 <classpathentry kind="lib" path="lib/dist/json-simple-1.1.1-1.jar"/> 37 37 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 38 38 <classpathentry kind="output" path="xbin"/> -
trunk/src/clients/web/net/sf/basedb/clients/web/AnnotationUtil.java
r7334 r7606 68 68 See: common/annotations/batch_inherit.jsp (and .js) 69 69 */ 70 @SuppressWarnings("unchecked")71 70 public static JSONObject loadJsonForBatchInherit(DbControl dc, AnnotationType at) 72 71 { … … 160 159 161 160 162 @SuppressWarnings("unchecked")163 161 public static JSONObject createJsonForAnnotationTypeAndAnnotation(DbControl dc, AnnotationType at, 164 162 Annotation a, Annotation inherited, boolean isProtocolParameter, Set<AnnotationTypeCategory> allCategories) … … 313 311 } 314 312 315 @SuppressWarnings("unchecked")316 313 static void createJSON(JSONObject json, DbControl dc, Annotation a, Formatter<Object> formatter, boolean formatAll) 317 314 { -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/ColumnDef.java
r7604 r7606 584 584 @since 3.3 585 585 */ 586 @SuppressWarnings("unchecked")587 586 public JSONObject asJsonObject() 588 587 { -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Table.java
r7217 r7606 453 453 return page; 454 454 } 455 @SuppressWarnings( { "unchecked", "rawtypes" })455 @SuppressWarnings("rawtypes") 456 456 void addColumnDef(ColumnDef cd, ListColumnAction extensionColumn) 457 457 { -
trunk/src/core/net/sf/basedb/util/json/JsonUtil.java
r7501 r7606 60 60 or empty an empty array is returned 61 61 */ 62 @SuppressWarnings("unchecked")63 62 public static <T> JSONArray toArray(Iterator<T> it, JsonConverter<? super T> converter) 64 63 { -
trunk/src/core/net/sf/basedb/util/json/NameableConverter.java
r6497 r7606 46 46 @return The JSON object 47 47 */ 48 @SuppressWarnings("unchecked")49 48 @Override 50 49 public Object convert(T object) -
trunk/www/common/plugin/index.jsp
r7605 r7606 426 426 Integer[] itemId = Values.getInt(sValues); 427 427 oValues = new Object[itemId.length]; 428 Item iType = Item.from ItemClass((Class)pType.getParameterClass());428 Item iType = Item.fromClass((Class)pType.getParameterClass()); 429 429 dc = sc.newDbControl(); 430 430 for (int i = 0; i < itemId.length; ++i)
Note: See TracChangeset
for help on using the changeset viewer.