void galotneSelektēta() {
   Ending ending = null;
   int i = galotņuTabula.getSelectedRow();
   Object o = null;
   if (i >= 0) o = galotņuTabula.getValueAt(i, 0);
   if (o != null) ending = lexicon.endingByID(Integer.parseInt(o.toString()));
   galĪpMod.setAttributes(ending);
 }
 void leksēmaSelektēta() {
   Lexeme leksēma = null;
   int i = leksēmuTabula.getSelectedRow();
   Object o = null;
   if (i >= 0) o = leksēmuTabula.getValueAt(i, 0);
   if (o != null) leksēma = lexicon.lexemeByID(Integer.parseInt(o.toString()));
   leksĪpMod.setAttributes(leksēma);
 }
  private void vgrĪpašībasAtjaunot(Paradigm vārdgrupa) {
    vgrĪpMod.setAttributes(vārdgrupa);
    galMod.setVārdgrupa(vārdgrupa);
    leksMod.setVārdgrupa(vārdgrupa);

    if (vārdgrupa != null) {
      if (galMod.getRowCount() > 0) galotņuTabula.setRowSelectionInterval(0, 0);
      galotneSelektēta();
      if (leksMod.getRowCount() > 0) leksēmuTabula.setRowSelectionInterval(0, 0);
      leksēmaSelektēta();
    }
  }
 protected void addLexemeProperty() {
   leksĪpMod.addRow();
 }
 protected void deleteLexemeProperty(int i) {
   leksĪpMod.removeRow(i);
 }
 protected void addEndingProperty() {
   galĪpMod.addRow();
 }
 protected void deleteEndingProperty(int i) {
   galĪpMod.removeRow(i);
 }
 protected void addWgroupProperty() {
   vgrĪpMod.addRow();
 }
 protected void deleteWgroupProperty(int i) {
   vgrĪpMod.removeRow(i);
 }