Searched defs:table (Results 1 - 25 of 221) sorted by relevance

123456789

/forgerock/opendj-b2.6/src/server/org/opends/server/util/table/
H A Dpackage-info.java34 * implementations. At the moment two types of table output are supported:
36 * <li>{@link CSVTablePrinter} - displays a table in comma-separated
38 * <li>{@link TabSeparatedTablePrinter} - displays a table in tab separated
40 * <li>{@link TextTablePrinter} - displays a table in a human-readable
43 * wrapping table cells where required.
45 * The following code illustrates the construction of a text-based table:
70 * Which will display the following table:
81 package org.opends.server.util.table;
H A DTablePrinter.java27 package org.opends.server.util.table;
32 * An interface for incrementally configuring a table serializer. Once
33 * configured, the table printer can be used to create a new
40 * Creates a new abstract table printer.
49 * Creates a new table serializer based on the configuration of this
50 * table printer.
52 * @return Returns a new table serializer based on the configuration
53 * of this table printer.
/forgerock/opendj2/src/server/org/opends/server/util/table/
H A Dpackage-info.java33 * implementations. At the moment two types of table output are supported:
35 * <li>{@link CSVTablePrinter} - displays a table in comma-separated
37 * <li>{@link TabSeparatedTablePrinter} - displays a table in tab separated
39 * <li>{@link TextTablePrinter} - displays a table in a human-readable
42 * wrapping table cells where required.
44 * The following code illustrates the construction of a text-based table:
69 * Which will display the following table:
80 package org.opends.server.util.table;
H A DTablePrinter.java26 package org.opends.server.util.table;
31 * An interface for incrementally configuring a table serializer. Once
32 * configured, the table printer can be used to create a new
39 * Creates a new abstract table printer.
48 * Creates a new table serializer based on the configuration of this
49 * table printer.
51 * @return Returns a new table serializer based on the configuration
52 * of this table printer.
/forgerock/opendj2.6.2/src/server/org/opends/server/util/table/
H A Dpackage-info.java34 * implementations. At the moment two types of table output are supported:
36 * <li>{@link CSVTablePrinter} - displays a table in comma-separated
38 * <li>{@link TabSeparatedTablePrinter} - displays a table in tab separated
40 * <li>{@link TextTablePrinter} - displays a table in a human-readable
43 * wrapping table cells where required.
45 * The following code illustrates the construction of a text-based table:
70 * Which will display the following table:
81 package org.opends.server.util.table;
H A DTablePrinter.java27 package org.opends.server.util.table;
32 * An interface for incrementally configuring a table serializer. Once
33 * configured, the table printer can be used to create a new
40 * Creates a new abstract table printer.
49 * Creates a new table serializer based on the configuration of this
50 * table printer.
52 * @return Returns a new table serializer based on the configuration
53 * of this table printer.
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/table/
H A Dpackage-info.java34 * implementations. At the moment two types of table output are supported:
36 * <li>{@link CSVTablePrinter} - displays a table in comma-separated
38 * <li>{@link TabSeparatedTablePrinter} - displays a table in tab separated
40 * <li>{@link TextTablePrinter} - displays a table in a human-readable
43 * wrapping table cells where required.
45 * The following code illustrates the construction of a text-based table:
70 * Which will display the following table:
81 package org.opends.server.util.table;
H A DTablePrinter.java27 package org.opends.server.util.table;
32 * An interface for incrementally configuring a table serializer. Once
33 * configured, the table printer can be used to create a new
40 * Creates a new abstract table printer.
49 * Creates a new table serializer based on the configuration of this
50 * table printer.
52 * @return Returns a new table serializer based on the configuration
53 * of this table printer.
/forgerock/opendj2-hg/src/server/org/opends/server/util/table/
H A Dpackage-info.java33 * implementations. At the moment two types of table output are supported:
35 * <li>{@link CSVTablePrinter} - displays a table in comma-separated
37 * <li>{@link TabSeparatedTablePrinter} - displays a table in tab separated
39 * <li>{@link TextTablePrinter} - displays a table in a human-readable
42 * wrapping table cells where required.
44 * The following code illustrates the construction of a text-based table:
69 * Which will display the following table:
80 package org.opends.server.util.table;
H A DTablePrinter.java26 package org.opends.server.util.table;
31 * An interface for incrementally configuring a table serializer. Once
32 * configured, the table printer can be used to create a new
39 * Creates a new abstract table printer.
48 * Creates a new table serializer based on the configuration of this
49 * table printer.
51 * @return Returns a new table serializer based on the configuration
52 * of this table printer.
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/ui/gui/table/
H A DLabelTableCellRenderer.java29 package com.sun.identity.diagnostic.base.core.ui.gui.table;
36 import javax.swing.table.TableCellRenderer;
45 JTable table,
44 getTableCellRendererComponent( JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int colimn ) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSArtifactStats.java39 private Map table; field in class:FSArtifactStats
45 * @param table Map of artifact and assertion id
49 public FSArtifactStats(Map table, String realm, String providerId) { argument
50 this.table = table;
56 * Prints the number of artifacts in the table for a provider when the
60 if (table.size() != 0 ) {
62 "Number of artifact in table for provider " +
63 providerId + " under realm " + realm + " : " + table.size());
66 "No artifact found in table fo
[all...]
H A DFSAssertionStats.java39 private Map table; field in class:FSAssertionStats
45 * @param table Map of assertion ID and <code>Assertion.Entry</code> object
49 public FSAssertionStats(Map table, String realm, String providerId) { argument
50 this.table = table;
56 * Prints number of assertions in the table for a provider when the
60 if (table.size() != 0 ) {
62 "Number of assertion in table for provider " + providerId +
63 " under realm " + realm + " : " + table.size());
66 "No assertion found in table fo
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSArtifactStats.java39 private Map table; field in class:FSArtifactStats
45 * @param table Map of artifact and assertion id
49 public FSArtifactStats(Map table, String realm, String providerId) { argument
50 this.table = table;
56 * Prints the number of artifacts in the table for a provider when the
60 if (table.size() != 0 ) {
62 "Number of artifact in table for provider " +
63 providerId + " under realm " + realm + " : " + table.size());
66 "No artifact found in table fo
[all...]
H A DFSAssertionStats.java39 private Map table; field in class:FSAssertionStats
45 * @param table Map of assertion ID and <code>Assertion.Entry</code> object
49 public FSAssertionStats(Map table, String realm, String providerId) { argument
50 this.table = table;
56 * Prints number of assertions in the table for a provider when the
60 if (table.size() != 0 ) {
62 "Number of assertion in table for provider " + providerId +
63 " under realm " + realm + " : " + table.size());
66 "No assertion found in table fo
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java32 import javax.swing.table.TableCellRenderer;
53 public Component getTableCellRendererComponent(JTable table, Object value, argument
56 Component comp = renderer.getTableCellRendererComponent(table, value,
H A DBaseDNCellRenderer.java38 * Class used to render the base DN table cells.
55 public Component getTableCellRendererComponent(JTable table, Object value, argument
74 return super.getTableCellRendererComponent(table, getText(),
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java31 import javax.swing.table.TableCellRenderer;
52 public Component getTableCellRendererComponent(JTable table, Object value, argument
55 Component comp = renderer.getTableCellRendererComponent(table, value,
H A DBaseDNCellRenderer.java37 * Class used to render the base DN table cells.
54 public Component getTableCellRendererComponent(JTable table, Object value, argument
73 return super.getTableCellRendererComponent(table, getText(),
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java32 import javax.swing.table.TableCellRenderer;
53 public Component getTableCellRendererComponent(JTable table, Object value, argument
56 Component comp = renderer.getTableCellRendererComponent(table, value,
H A DBaseDNCellRenderer.java38 * Class used to render the base DN table cells.
55 public Component getTableCellRendererComponent(JTable table, Object value, argument
74 return super.getTableCellRendererComponent(table, getText(),
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java31 import javax.swing.table.TableCellRenderer;
52 public Component getTableCellRendererComponent(JTable table, Object value, argument
55 Component comp = renderer.getTableCellRendererComponent(table, value,
H A DBaseDNCellRenderer.java37 * Class used to render the base DN table cells.
54 public Component getTableCellRendererComponent(JTable table, Object value, argument
73 return super.getTableCellRendererComponent(table, getText(),
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java32 import javax.swing.table.TableCellRenderer;
53 public Component getTableCellRendererComponent(JTable table, Object value, argument
56 Component comp = renderer.getTableCellRendererComponent(table, value,
H A DBaseDNCellRenderer.java38 * Class used to render the base DN table cells.
55 public Component getTableCellRendererComponent(JTable table, Object value, argument
74 return super.getTableCellRendererComponent(table, getText(),

Completed in 171 milliseconds

123456789