Home | History | Annotate | Download | only in extensions

Lines Matching defs:m_args

39   Object [] m_args = null;
47 m_args = constructorArgs;
49 m_sig = new Class[m_args.length];
50 for (int i = 0; i < m_args.length; i++)
52 if (m_args[i] != null)
53 m_sig[i] = m_args[i].getClass();//System.out.println("arg class " + i + " " +m_sig[i]);
78 //System.out.println("class " + cl + " " + m_args + " " + m_args.length + " " + m_sig);
86 if (cons[i].getParameterTypes().length == m_args.length)
95 handler = (ExtensionHandler)con.newInstance(m_args);