예제 #1
0
  void collectRelatedFormats(Catalog catalog, Map<String, Format> newFormats) {

    /*
     * Prior to intialization we save the newly created format in the
     * format field so that it can be used by class evolution.  But note
     * that it may be replaced by the initialize method.  [#16233]
     */
    format = catalog.createFormat(cls, newFormats);
  }
 public Format createFormat(final Class type, final Map<String, Format> newFormats) {
   return simpleCatalog.createFormat(type, newFormats);
 }
 public Format createFormat(final String clsName, final Map<String, Format> newFormats) {
   return simpleCatalog.createFormat(clsName, newFormats);
 }
예제 #4
0
 @Override
 void collectRelatedFormats(Catalog catalog, Map<String, Format> newFormats) {
   /* Collect the proxy format. */
   assert proxyClassName != null;
   catalog.createFormat(proxyClassName, newFormats);
 }
 @Override
 void collectRelatedFormats(Catalog catalog, Map<String, Format> newFormats) {
   Class cls = getType().getComponentType();
   catalog.createFormat(cls, newFormats);
 }