1 19 20 package org.netbeans.modules.dbschema.jdbcimpl; 21 22 import org.netbeans.modules.dbschema.*; 23 24 public class UniqueKeyElementImpl extends KeyElementImpl implements UniqueKeyElement.Impl { 25 26 private boolean _primary; 27 28 29 public UniqueKeyElementImpl() { 30 this(null, false); 31 } 32 33 public UniqueKeyElementImpl(String name, boolean primary) { 34 super(name); _primary = primary; 36 } 37 38 41 public boolean isPrimaryKey() { 42 return _primary; 43 } 44 45 49 public void setPrimaryKey(boolean primary) throws DBException { 50 _primary = primary; 51 } 52 } 53 | Popular Tags |