Package com.centraview.common

Examples of com.centraview.common.TableRelate


          Vector vec = (Vector)innHMap.get(table1);
          if (vec == null)
          {
            vec = new Vector();
          } //end of if statement (vec == null)
          vec.add(new TableRelate(table1,field1,field2,clause,otherTable));
          innHMap.put(table1,vec);
          mdObj.put(table2,innHMap);
        } //end of if statement (mdObj.containsKey(table2))
        else
        {
          HashMap  add = new HashMap();
          Vector vec = new Vector();
          vec.add(new TableRelate(table1,field1,field2,clause,otherTable));
          add.put(table1,vec);
          mdObj.put(table2,add);
        } //end of else statement (mdObj.containsKey(table2))
      }// end of while loop (it.hasNext())
    } //end of try block
View Full Code Here

TOP

Related Classes of com.centraview.common.TableRelate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.