/* */ }
/* */
/* */ protected void bindClassMetaData(ClassMetaDataBinding data)
/* */ {
/* */ try {
/* 876 */ ClassMetaDataLoader loader = data.getLoader();
/* 877 */ Object[] objs = this.advisedMethods.getValues();
/* 878 */ Method[] methods = new Method[objs.length];
/* 879 */ Field[] fields = this.advisedFields;
/* */
/* 881 */ if (fields == null) fields = new Field[0];
/* 882 */ Constructor[] cons = this.constructors;
/* */
/* 884 */ if (cons == null) cons = new Constructor[0];
/* 885 */ for (int i = 0; i < objs.length; i++) methods[i] = ((Method)objs[i]);
/* 886 */ loader.bind(this, data, methods, fields, cons);
/* */ }
/* */ catch (Exception ex)
/* */ {
/* 891 */ ex.printStackTrace();
/* */ }