Ejemplo n.º 1
0
        private ConstantPool decodeConstantPool()
        {
            ConstantPool cpool = new ConstantPool();
            int          count = reader.readUI16();

            cpool.pool = new String[count];
            for (int i = 0; i < count; i++)
            {
                cpool.pool[i] = reader.readString();
            }
            return(cpool);
        }
Ejemplo n.º 2
0
		private ConstantPool decodeConstantPool()
		{
			ConstantPool cpool = new ConstantPool();
			int count = reader.readUI16();
			cpool.pool = new String[count];
			for (int i = 0; i < count; i++)
			{
				cpool.pool[i] = reader.readString();
			}
			return cpool;
		}