]> git.argeo.org Git - gpl/argeo-suite.git/blob - TermsEntryArea.java
97d8c1f259eefc5a4501ae6b3dc9744bd727bc23
[gpl/argeo-suite.git] / TermsEntryArea.java
1 package org.argeo.app.ui;
2
3 import javax.jcr.Node;
4 import javax.jcr.RepositoryException;
5
6 import org.argeo.cms.ui.CmsUiProvider;
7 import org.eclipse.swt.SWT;
8 import org.eclipse.swt.layout.GridLayout;
9 import org.eclipse.swt.widgets.Composite;
10 import org.eclipse.swt.widgets.Control;
11 import org.eclipse.swt.widgets.Label;
12
13 /** Entry area for managing th etypologies. */
14 public class TermsEntryArea implements CmsUiProvider {
15
16 @Override
17 public Control createUi(Composite parent, Node context) throws RepositoryException {
18 parent.setLayout(new GridLayout());
19 Label lbl = new Label(parent, SWT.NONE);
20 lbl.setText("Typologies");
21 return lbl;
22 }
23
24 }