Editamos DemoTopComponent
y creamos un objeto
List<CouchDB> resultList = new ArrayList<CouchDB>();
En el constructor agregamos
CouchDB c = new CouchDB();
c.setHost("localhost");
c.setPuerto(5984);
c.setPassword("");
c.setUser("");
resultList.add(c);
em.setRootContext(new AbstractNode(Children.create(new CouchDBChildFactory(resultList),
true)));
associateLookup(ExplorerUtils.createLookup(em, getActionMap()));
Muestra las propiedades
y creamos un objeto
List<CouchDB> resultList = new ArrayList<CouchDB>();
En el constructor agregamos
CouchDB c = new CouchDB();
c.setHost("localhost");
c.setPuerto(5984);
c.setPassword("");
c.setUser("");
resultList.add(c);
em.setRootContext(new AbstractNode(Children.create(new CouchDBChildFactory(resultList),
true)));
associateLookup(ExplorerUtils.createLookup(em, getActionMap()));
Muestra las propiedades
Damos doble click
o damos clic derecho
Procesar los valores
• Agregar un TextArea
• Agregar un botĆ²n que muestre las propiedades de los objetos.
for (int i = 0; i < resultList.size(); i++) {
DataBases c0 = resultList.get(i);
jTextArea1.append(c0.getHost() + c0.getUser() + "\n");
}
Comments