import CosPropertyService.*; public class GeneralDoc { public int length; public String[] names = new String[20]; public String[] values = new String[20]; public GeneralDoc () { for(int i=0;i<20;i++) { names[i] = "nothing"; values[i]= "nothing"; } length = 0; return; } public GeneralDoc (String[] propos, String[] pvalues) throws Exception { if (propos.length != pvalues.length) { throw new Exception(); } for(int i=0;i