Java Doc for DefaultMOMutableTableModel.java in  » Net » snmp4j » org » snmp4j » agent » mo » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » snmp4j » org.snmp4j.agent.mo 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.snmp4j.agent.mo.DefaultMOTableModel
      org.snmp4j.agent.mo.DefaultMOMutableTableModel

DefaultMOMutableTableModel
public class DefaultMOMutableTableModel extends DefaultMOTableModel implements MOMutableTableModel(Code)

Inner Class :public class FilteredRowIterator implements Iterator

Field Summary
protected  MOTableRowFactoryrowFactory
    


Method Summary
public synchronized  voidaddMOTableModelListener(MOTableModelListener l)
    
public  MOTableRowaddRow(MOTableRow row)
    
public synchronized  voidclear()
    
public synchronized  voidclear(MOTableRowFilter filter)
     Remove all rows that do not match the given filter criteria from the model.
public  MOTableRowcreateRow(OID index, Variable[] values)
     Create a new row and return it.
protected  voidfireTableModelChanged(MOTableModelEvent event)
    
public  voidfreeRow(MOTableRow row)
    
public  MOTableRowFactorygetRowFactory()
    
public synchronized  ListgetRows(OID lowerBound, OID upperBoundEx)
     Returns a lexicographic ordered list of the rows in the specified index range.
Parameters:
  lowerBound - the lower bound index (inclusive) for the rows in the returned list.
Parameters:
  upperBoundEx - the upper bound index (exclusive) for the rows in the returned list.the possibly empty lexicographically ordered Listof rows of this table model in the specified index range.
public synchronized  ListgetRows(OID lowerBound, OID upperBoundEx, MOTableRowFilter filter)
     Returns a lexicographic ordered list of the rows in the specified index range that match the supplied filter.
Parameters:
  lowerBound - the lower bound index (inclusive) for the rows in the returned list.
Parameters:
  upperBoundEx - the upper bound index (exclusive) for the rows in the returned list.
Parameters:
  filter - the filter to exclude rows in the range from the returnedthe possibly empty lexicographically ordered Listof rows of this table model in the specified index range.
public synchronized  Iteratoriterator(MOTableRowFilter filter)
     Returns an iterator over all rows in this table that pass the given filter.
public synchronized  voidremoveMOTableModelListener(MOTableModelListener l)
    
public synchronized  MOTableRowremoveRow(OID index)
    
public synchronized  voidremoveRows(OID lowerBoundIncl, OID upperBoundExcl)
    
public  voidsetColumnCount(int columnCount)
    
public  voidsetRowFactory(MOTableRowFactory rowFactory)
    

Field Detail
rowFactory
protected MOTableRowFactory rowFactory(Code)





Method Detail
addMOTableModelListener
public synchronized void addMOTableModelListener(MOTableModelListener l)(Code)



addRow
public MOTableRow addRow(MOTableRow row)(Code)



clear
public synchronized void clear()(Code)



clear
public synchronized void clear(MOTableRowFilter filter)(Code)
Remove all rows that do not match the given filter criteria from the model.
Parameters:
  filter - the MOTableRowFilter that filters out the rows todelete.



createRow
public MOTableRow createRow(OID index, Variable[] values) throws UnsupportedOperationException(Code)
Create a new row and return it. The new row will not be added to the table. To add it to the model use the DefaultMOMutableTableModel.addRow method. If this mutable table does not support row creation, it should throw an UnsupportedOperationException .
Parameters:
  index - the index OID for the new row.
Parameters:
  values - the values to be contained in the new row.the created MOTableRow.
throws:
  java.lang.UnsupportedOperationException - if the specified row cannot be created.



fireTableModelChanged
protected void fireTableModelChanged(MOTableModelEvent event)(Code)



freeRow
public void freeRow(MOTableRow row)(Code)



getRowFactory
public MOTableRowFactory getRowFactory()(Code)



getRows
public synchronized List getRows(OID lowerBound, OID upperBoundEx)(Code)
Returns a lexicographic ordered list of the rows in the specified index range.
Parameters:
  lowerBound - the lower bound index (inclusive) for the rows in the returned list.
Parameters:
  upperBoundEx - the upper bound index (exclusive) for the rows in the returned list.the possibly empty lexicographically ordered Listof rows of this table model in the specified index range. Modificationsto the list will not affect the underlying table model, althoughmodifications to the row elements will.



getRows
public synchronized List getRows(OID lowerBound, OID upperBoundEx, MOTableRowFilter filter)(Code)
Returns a lexicographic ordered list of the rows in the specified index range that match the supplied filter.
Parameters:
  lowerBound - the lower bound index (inclusive) for the rows in the returned list.
Parameters:
  upperBoundEx - the upper bound index (exclusive) for the rows in the returned list.
Parameters:
  filter - the filter to exclude rows in the range from the returnedthe possibly empty lexicographically ordered Listof rows of this table model in the specified index range. Modificationsto the list will not affect the underlying table model, althoughmodifications to the row elements will.



iterator
public synchronized Iterator iterator(MOTableRowFilter filter)(Code)
Returns an iterator over all rows in this table that pass the given filter. If the table might be modified while the iterator is used, it is recommended to synchronize on this model while iterating.
Parameters:
  filter - a MOTableRowFilter instance that defines the rows to return.an Iterator.



removeMOTableModelListener
public synchronized void removeMOTableModelListener(MOTableModelListener l)(Code)



removeRow
public synchronized MOTableRow removeRow(OID index)(Code)



removeRows
public synchronized void removeRows(OID lowerBoundIncl, OID upperBoundExcl)(Code)



setColumnCount
public void setColumnCount(int columnCount)(Code)



setRowFactory
public void setRowFactory(MOTableRowFactory rowFactory)(Code)



Fields inherited from org.snmp4j.agent.mo.DefaultMOTableModel
protected int columnCount(Code)(Java Doc)
protected SortedMap rows(Code)(Java Doc)

Methods inherited from org.snmp4j.agent.mo.DefaultMOTableModel
public synchronized MOTableRow addRow(MOTableRow row)(Code)(Java Doc)
public boolean containsRow(OID index)(Code)(Java Doc)
public synchronized OID firstIndex()(Code)(Java Doc)
public synchronized MOTableRow firstRow()(Code)(Java Doc)
public int getColumnCount()(Code)(Java Doc)
public synchronized MOTableRow getRow(OID index)(Code)(Java Doc)
public int getRowCount()(Code)(Java Doc)
public synchronized Iterator iterator()(Code)(Java Doc)
public synchronized OID lastIndex()(Code)(Java Doc)
public synchronized MOTableRow lastRow()(Code)(Java Doc)
public synchronized Iterator tailIterator(OID lowerBound)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.