8283848586878889
@Override public String getId() throws CaoException { try { return file.getCanonicalPath(); } catch (IOException e) { throw new CaoException(file.getAbsolutePath(),e); } }
394041424344454647
ele.setChildren(new LinkedCaoList(ele, list)); return ele; } } catch (Exception e) { throw new CaoException(e); } return super.queryElement(name, access, attributes); }
414243444546474849
878889909192939495
protected void save() throws CaoException { if (parentObject != null) { try { ((AdbApplication)getApplication()).getManager().saveObject(parentObject); } catch (MException e) { throw new CaoException(e); } } }
474849505152535455
super(app); this.attributes = attributes; try { this.node = row.getNode(); } catch (RepositoryException e) { throw new CaoException(e); } meta = new JackMeta(getConnection().getDriver(), node); }
697071727374757677
public void reset() throws CaoException { LinkedList<CaoElement> list = new LinkedList<CaoElement>(); try { join(config,list); } catch (Exception e) { throw new CaoException(e); } listIter = list.iterator(); }
6768697071727374
@Override public String getId() throws CaoException { try { return node.getIdentifier(); } catch (RepositoryException e) { throw new CaoException(e); } }
7677787980818283
@Override public String getName() throws CaoException { try { return node.getName(); } catch (RepositoryException e) { throw new CaoException(getId(),e); } }
104105106107108109110111
@Override public String getString(String name) throws CaoException { try { return node.getProperty(name).getString(); } catch (RepositoryException e) { throw new CaoException(getId(),e); } }
150151152153154155156157
public CaoList getList(String name, CaoAccess access, String... attributes) throws CaoException { try { return new ValueList(this, name, node.getProperty(name).getValues() ); } catch (Exception e) { throw new CaoException(name,e); } }