-
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 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 com.google.gwt.topspin.ui.client.Table.appendRow()
return;
}
Collections.sort(children, JavaScriptProfileModel.nodeTimeComparator);
final Table profileTable = new Table(container);
int rowIndex = 0;
profileTable.appendRow();
profileTable.appendCell(rowIndex).setInnerHTML("<b>Symbol</b>");
profileTable.appendCell(rowIndex).setInnerHTML("<b>Resource</b>");
profileTable.appendCell(rowIndex).setInnerHTML("<b>Self Time</b>");
profileTable.appendCell(rowIndex).setInnerHTML("<b>Time</b>");
Examples of com.jgoodies.forms.builder.DefaultFormBuilder.appendRow()
coverSubjectLabel = builder.append("", coverSubjectTextField);
builder.nextLine();
coverCommentTextArea= new JTextArea(3, DEFAULT_COLUMNS);
coverCommentLabel = builder.append("");
builder.appendRow("fill:pref:grow"); // second row for text area
CellConstraints cc = new CellConstraints();
coverCommentScrollPane = new JScrollPane(coverCommentTextArea);
builder.add(coverCommentScrollPane,
cc.xywh(builder.getColumn(), builder.getRow(), 1, 2));
builder.nextLine(2);
Examples of com.jgoodies.forms.builder.DefaultFormBuilder.appendRow()
initEventHandling();
FormLayout layout = new FormLayout(
"10dlu,p,p,100dlu,3dlu,p,p,20dlu,10dlu", "");
DefaultFormBuilder builder = new DefaultFormBuilder(layout);
builder.setLeadingColumnOffset(1);
builder.appendRow(new RowSpec("top:10dlu"));
builder.nextLine();
String metric = article.getMetric();
if(metric!=null){
metric="("+metric+")";
Examples of com.jgoodies.forms.builder.DefaultFormBuilder.appendRow()
builder.nextLine();
}
}
builder.append(ButtonBarFactory.buildCenteredBar(buttonOk), 8);
builder.appendRow(new RowSpec("top:5dlu"));
return new IconFeedbackPanel(validationResultModel, builder.getPanel());
}
/**
Examples of com.jgoodies.forms.builder.DefaultFormBuilder.appendRow()
if (rowCount == 0) {
rowCount = 1;
}
int tableSize = rowSize;
String rowSizeSpec = "fill:" + tableSize + "dlu:grow";
builder.appendRow(new RowSpec(rowSizeSpec));
builder.append(new JScrollPane(tableOrders));
return builder.getPanel();
}
}
Examples of com.jgoodies.forms.builder.PanelBuilder.appendRow()
builder.add(
ButtonBarFactory.buildCenteredBar(buttonSave, buttonCancel),
cc.xyw(2, 14, 5));
builder.appendRow(new RowSpec("5dlu"));
return new IconFeedbackPanel(validationResultModel, builder.getPanel());
}
/**
* @param object
Examples of com.jgoodies.forms.layout.FormLayout.appendRow()
lay.appendRow(RowSpec.decode("2dlu"));
pb.add(authorAndWebsite, cc.xyw(2,7,3));
}
else {
authorAndWebsiteLayout.appendRow(RowSpec.decode("1dlu"));
authorAndWebsiteLayout.appendRow(RowSpec.decode("default"));
}
JLabel webLabel = new JLabel(mLocalizer.msg("website", "Website"));
webLabel.setFont(webLabel.getFont().deriveFont(Font.BOLD));
Examples of com.jgoodies.forms.layout.FormLayout.appendRow()
pb.add(authorAndWebsite, cc.xyw(2,7,3));
}
else {
authorAndWebsiteLayout.appendRow(RowSpec.decode("1dlu"));
authorAndWebsiteLayout.appendRow(RowSpec.decode("default"));
}
JLabel webLabel = new JLabel(mLocalizer.msg("website", "Website"));
webLabel.setFont(webLabel.getFont().deriveFont(Font.BOLD));
webLabel.setForeground(list.getSelectionForeground());
Examples of com.jgoodies.forms.layout.FormLayout.appendRow()
content.setBorder(Borders.DIALOG_BORDER);
CellConstraints cc = new CellConstraints();
int currentRow = 1;
layout.appendRow(RowSpec.decode("pref"));
layout.appendRow(RowSpec.decode("5dlu"));
content.add(UiUtilities.createHelpTextArea(mLocalizer
.msg("description", "")), cc.xyw(1, currentRow, 5));
layout.appendRow(RowSpec.decode("pref"));
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.