-
com.jgoodies.forms.builder.DefaultFormBuilder.appendRow()
-
com.jgoodies.forms.builder.PanelBuilder.appendRow()
-
com.jgoodies.forms.layout.FormLayout.appendRow()
Appends the given row specification to the bottom of all rows.
@param rowSpec the row specification to be added to the form layout
@throws NullPointerException if the rowSpec is null
-
com.salas.bb.utils.uif.BBFormBuilder.appendRow()
Appends row with arbitrary specs.
@param encodedSpecs specs.
-
net.helipilot50.stocktrade.displayproject.controls.ArrayField.appendRow()
-
net.sf.abproject.util.google.csv.GoogleCsvDocument.appendRow()
-
org.mevenide.idea.psi.project.PsiDependencies.appendRow()
-
org.odftoolkit.odfdom.doc.table.OdfTable.appendRow()
Append a row to the end of the table. The style of new row is same with the last row in the table.
Since ODFDOM 8.5 automatic table expansion is supported. Whenever a cell outside the current table is addressed the table is instantly expanded. Method getCellByPosition
can randomly access any cell, no matter it in or out of the table original range.
@return a new appended row
@see #appendRows(int)
@see #getRowByIndex(int)
@see #getCellByPosition(int,int)
@see #getCellByPosition(String)
-
org.odftoolkit.simple.table.Table.appendRow()
Append a row to the end of the table. The style of new row is same with the last row in the table.
Since SIMPLE supports automatic table expansion. Whenever a cell outside the current table is addressed the table is instantly expanded. Method getCellByPosition
can randomly access any cell, no matter it in or out of the table original range.
@return a new appended row
@see #appendRows(int)
@see #getRowByIndex(int)
@see #getCellByPosition(int,int)
@see #getCellByPosition(String)
-
railo.runtime.dump.DumpTable.appendRow()
-
reportgen.prototype.queryresults.ResultsRowList.appendRow()
Examples of com.jgoodies.forms.layout.FormLayout.appendRow()
pos += 2;
if (description != null) {
JLabel lb = new JLabel(description);
layout.appendRow(RowSpec.decode("pref"));
layout.appendRow(RowSpec.decode("3dlu"));
contentPane.add(lb, cc.xy(1,pos));
pos += 2;
}
JButton okBt = new JButton(Localizer.getLocalization(Localizer.I18N_OK));
Examples of com.jgoodies.forms.layout.FormLayout.appendRow()
ButtonBarBuilder2 builder = new ButtonBarBuilder2();
builder.addGlue();
builder.addButton(new JButton[] {okBt, cancelBt});
layout.appendRow(RowSpec.decode("pref"));
contentPane.add(builder.getPanel(), cc.xy(1,pos));
pack();
}
Examples of com.salas.bb.utils.uif.BBFormBuilder.appendRow()
BBFormBuilder builder = new BBFormBuilder("0, pref:grow, 0", this);
builder.setDefaultDialogBorder();
builder.append(logo, 3, CellConstraints.CENTER, CellConstraints.DEFAULT);
builder.appendUnrelatedComponentsGapRow(2);
builder.appendRow("50dlu:grow");
builder.append(sp, 3, CellConstraints.FILL, CellConstraints.FILL);
builder.appendUnrelatedComponentsGapRow(2);
builder.append(buttonBar, 3, CellConstraints.RIGHT, CellConstraints.DEFAULT);
}
Examples of net.helipilot50.stocktrade.displayproject.controls.ArrayField.appendRow()
col = ((ArrayColumnModel)af.getColumnModel()).getColumnIndex(ac.getIdentifier());
// If an explicit focus request occurs on an empty array field that allows append, then create
// a new row (that's what Forte did). CraigM 16/10/2007.
if (af.getRowCount() == 0 && af.isAllowsAppend()) {
af.appendRow(col);
}
else if (row >= af.getRowCount()) {
// TF:11/03/2009:A request has been made to focus to a non-existant row, do nothing
return;
}
Examples of net.sf.abproject.util.google.csv.GoogleCsvDocument.appendRow()
// if(o instanceof Human)kind="human";
// else
// kind=o.getClass().getName();
// }
GoogleCsvRow e=d.createRow();
d.appendRow(e);
if(o instanceof Human){
Human h = (Human) o;
GoogleCsvRow he=e;
copyAttr(h,he,"Notes");
Examples of org.mevenide.idea.psi.project.PsiDependencies.appendRow()
final PsiProject psi = modelMgr.getPsiProject(problem.getPomUrl());
if(psi == null)
return;
final PsiDependencies deps = psi.getDependencies();
final int row = deps.appendRow();
deps.setGroupId(row, groupId);
deps.setArtifactId(row, artifactId);
deps.setType(row, type);
deps.setVersion(row, version);
deps.setExtension(row, extension);
Examples of org.mevenide.idea.psi.project.PsiDependencies.appendRow()
final PomModelManager modelMgr = PomModelManager.getInstance(project);
final PsiProject psi = modelMgr.getPsiProject(pomUrl);
final PsiDependencies deps = psi.getDependencies();
final RepoPathElement[] artifacts = getSelectedItems(RepoPathElement.LEVEL_VERSION);
for (RepoPathElement pathElement : artifacts) {
final int row = deps.appendRow();
deps.setGroupId(row, pathElement.getGroupId());
deps.setArtifactId(row, pathElement.getArtifactId());
deps.setType(row, pathElement.getType());
deps.setVersion(row, pathElement.getVersion());
}
Examples of org.odftoolkit.odfdom.doc.table.OdfTable.appendRow()
*/
OdfTable oTable = oDoc.getTableByName("SamplesTable");
for (Sample s : samples) {
OdfTableRow row = oTable.appendRow();
OdfTableCell cell0 = row.getCellByIndex(0);
OdfTextParagraph cp0 = new OdfTextParagraph(contentDom);
cp0.setTextContent(s.getAlias());
cp0.setProperty(StyleTextPropertiesElement.FontSize, "8pt");
Examples of org.odftoolkit.simple.table.Table.appendRow()
// setting null resets the element, see ODFTOOLKIT-326
cell.getStyleHandler().getTableCellPropertiesForWrite().setBackgroundColor(null);
Assert.assertNull(cell.getStyleHandler().getTableCellPropertiesForRead().getBackgroundColor());
// defaulting to white when color is null
Assert.assertEquals(Color.WHITE, cell.getCellBackgroundColor());
Cell newCell = table.appendRow().getCellByIndex(1);
Assert.assertNull(newCell.getStyleHandler().getTableCellPropertiesForRead().getBackgroundColor());
Assert.assertEquals(Color.WHITE, newCell.getCellBackgroundColor());
}
@Test
Examples of railo.runtime.dump.DumpTable.appendRow()
if(variable!=null) {
pageContext.setVariable(variable,new Double(exe));
}
else {
DumpTable table = new DumpTable("#ff9900","#ffcc00","#000000");
table.appendRow(1,new SimpleDumpData(label==null?"Stopwatch":label),new SimpleDumpData(exe));
DumpWriter writer=pageContext.getConfig().getDefaultDumpWriter(DumpWriter.DEFAULT_RICH);
try {
pageContext.forceWrite(writer.toString(pageContext,table,true));
}
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.