本文整理汇总了Java中com.vaadin.ui.HorizontalSplitPanel.setSplitPosition方法的典型用法代码示例。如果您正苦于以下问题:Java HorizontalSplitPanel.setSplitPosition方法的具体用法?Java HorizontalSplitPanel.setSplitPosition怎么用?Java HorizontalSplitPanel.setSplitPosition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.vaadin.ui.HorizontalSplitPanel
的用法示例。
在下文中一共展示了HorizontalSplitPanel.setSplitPosition方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: showView
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
/**
* Diese Methode setzt die obere und die zwei unteren Views in der Prozessansicht.
*
* @author: Mirko Göpfrich
*/
@Override
public void showView(View topView, View bottomLeftView, View bottomRigthView) {
verticalSplitPanel.setFirstComponent((Component) topView);
//Teilt das Panel horizontal un zwei gleiche Bereiche auf und ertstellt eine vertiakel Trennlinie (nicht verstellbar.)
horizontalSplitPanel = new HorizontalSplitPanel();
horizontalSplitPanel.setSizeFull();
horizontalSplitPanel.setSplitPosition(50, UNITS_PERCENTAGE);
horizontalSplitPanel.setLocked(true);
horizontalSplitPanel.setStyleName("small");
horizontalSplitPanel.setFirstComponent((Component) bottomLeftView);
horizontalSplitPanel.setSecondComponent((Component) bottomRigthView);
//fügt dem unteren vertikalen Panel ein horizontales SplitPanel hinzu.
verticalSplitPanel.setSecondComponent(horizontalSplitPanel);
logger.debug("Horizontales SplitPanel für Prozessschritte und Infos erstellt und an das untere vertikale Panel übergeben");
}
示例2: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@PostConstruct
protected void init() {
setSizeFull();
tabbedPanel = new TabbedPanel();
HorizontalSplitPanel leftSplit = new HorizontalSplitPanel();
leftSplit.setSizeFull();
leftSplit.setSplitPosition(UIConstants.DEFAULT_LEFT_SPLIT, Unit.PIXELS);
deployNavigator = new DeployNavigator(context, tabbedPanel);
leftSplit.setFirstComponent(deployNavigator);
VerticalLayout container = new VerticalLayout();
container.setSizeFull();
container.addComponent(tabbedPanel);
leftSplit.setSecondComponent(container);
addComponent(leftSplit);
}
示例3: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@PostConstruct
protected void init() {
setSizeFull();
tabbedPanel = new TabbedPanel();
HorizontalSplitPanel leftSplit = new HorizontalSplitPanel();
leftSplit.setSizeFull();
leftSplit.setSplitPosition(UIConstants.DEFAULT_LEFT_SPLIT, Unit.PIXELS);
projectNavigator = new DesignNavigator(context, tabbedPanel);
leftSplit.setFirstComponent(projectNavigator);
VerticalLayout container = new VerticalLayout();
container.setSizeFull();
container.addComponent(tabbedPanel);
leftSplit.setSecondComponent(container);
addComponent(leftSplit);
}
示例4: createMainComponent
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
private void createMainComponent() {
VerticalLayout main = new VerticalLayout();
main.setMargin(false);
main.setSizeFull();
main.addComponent(createToolbar());
mainSplitPanel = new HorizontalSplitPanel();
mainSplitPanel.setMargin(false);
mainSplitPanel.setMaxSplitPosition(80f, HorizontalSplitPanel.UNITS_PERCENTAGE);
mainSplitPanel.setMinSplitPosition(20f, HorizontalSplitPanel.UNITS_PERCENTAGE);
mainSplitPanel.setSizeFull();
mainSplitPanel.setSplitPosition(30f, HorizontalSplitPanel.UNITS_PERCENTAGE);
taskTable = createTable();
mainSplitPanel.setFirstComponent(taskTable);
displayEmptyTask();
main.addComponent(mainSplitPanel);
main.setExpandRatio(mainSplitPanel, 1.0f);
mainComponent = main;
}
示例5: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@Override
protected void init(VaadinRequest request) {
setPollInterval(1000);
hl = new HorizontalSplitPanel();
hl.setSizeFull();
setContent(hl);
buttonsOnTheLeft = new VerticalLayout();
buttonsOnTheLeft.setSizeUndefined();
hl.setFirstComponent(buttonsOnTheLeft);
hl.setSplitPosition(25, Unit.PERCENTAGE);
ServiceTracker<FragmentFactory, FragmentFactory> tracker = new ServiceTracker<FragmentFactory, FragmentFactory>(
VaadinActivator.context, FragmentFactory.class, this);
tracker.open();
addDetachListener(new DetachListener() {
@Override
public void detach(DetachEvent event) {
tracker.close();
}
});
}
示例6: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@Override
public void init() {
if (eventProxy == null)
throw new RuntimeException("eventProxy cannot be null.");
if (eventConfDao == null)
throw new RuntimeException("eventConfDao cannot be null.");
if (dataCollectionDao == null)
throw new RuntimeException("dataCollectionDao cannot be null.");
setTheme(Runo.THEME_NAME);
final HorizontalSplitPanel mainPanel = new HorizontalSplitPanel();
final MibConsolePanel mibConsole = new MibConsolePanel();
final MibCompilerPanel mibPanel = new MibCompilerPanel(dataCollectionDao, eventConfDao, eventProxy, mibParser, mibConsole);
mainPanel.setSizeFull();
mainPanel.setSplitPosition(25, Sizeable.UNITS_PERCENTAGE);
mainPanel.addComponent(mibPanel);
mainPanel.addComponent(mibConsole);
final Window mainWindow = new Window("MIB Compiler Application", mainPanel);
setMainWindow(mainWindow);
}
示例7: buildHorizontalSplitPanelOrganization
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@AutoGenerated
private HorizontalSplitPanel buildHorizontalSplitPanelOrganization() {
// common part: create layout
horizontalSplitPanelOrganization = new HorizontalSplitPanel();
horizontalSplitPanelOrganization.setSplitPosition(25, Sizeable.UNITS_PERCENTAGE);
horizontalSplitPanelOrganization.setImmediate(false);
horizontalSplitPanelOrganization.setWidth("100.0%");
horizontalSplitPanelOrganization.setHeight("100.0%");
horizontalSplitPanelOrganization.setMargin(false);
// tabSheetOrganization
tabSheetOrganization = new TabSheet();
tabSheetOrganization.setImmediate(true);
tabSheetOrganization.setWidth("100.0%");
tabSheetOrganization.setHeight("100.0%");
horizontalSplitPanelOrganization.addComponent(tabSheetOrganization);
return horizontalSplitPanelOrganization;
}
示例8: initContent2
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
private void initContent2() {
VerticalLayout content = new VerticalLayout();
content.setWidth("100%");
setContent(content);
Label envLbl = createEnvLabel();
HorizontalLayout topMenu = new HorizontalLayout();
middle = new HorizontalSplitPanel();
bottom = new HorizontalLayout();
VerticalLayout leftMenu = new VerticalLayout();
main = new VerticalLayout();
leftMenu.addComponents(mainBtn,filtersBtn);
int buttonSize = 100;
mainBtn.setWidth(buttonSize,Unit.PIXELS);
filtersBtn.setWidth(buttonSize,Unit.PIXELS);
mainBtn.setEnabled(false);
filtersBtn.setEnabled(false);
filtersBtn.addStyleName(ValoTheme.BUTTON_PRIMARY);
leftMenu.setVisible(false);
topMenu.addComponents(envLbl,processBtn,loadHistoricalQuotesBtn);
leftMenu.setWidth(buttonSize,Unit.PIXELS);
middle.setFirstComponent(leftMenu);
middle.setSecondComponent(main);
middle.setSplitPosition(buttonSize, Sizeable.Unit.PIXELS);
content.addComponents(topMenu,middle,bottom);
}
示例9: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@Override
protected void init(VaadinRequest request) {
HorizontalSplitPanel split = new HorizontalSplitPanel();
setContent(split);
split.setSplitPosition(50, Unit.PERCENTAGE);
split.setMinSplitPosition(100, Unit.PIXELS);
split.setMaxSplitPosition(1200, Unit.PIXELS);
CssLayout grid = new CssLayout();
grid.setWidth("100%");
grid.addStyleName("grid");
split.addComponent(grid);
for (int i = 1; i < 10; i++) {
Label l = new Label("" + i);
l.setSizeUndefined();
grid.addComponent(l);
}
Label description = new Label(
"<h3>This application demonstrates the Responsive add-on for Vaadin.</h3>"
+ "<p>Drag the splitter to see how the boxes on the left side adapt to "
+ "different widths. They maintain a width of 100-200px, and always "
+ "span the entire width of the container.</p><p>This label will "
+ "adapt its font size and line height for different widths.</p>"
+ "<p><a href=\"http://vaadin.com/addon/vaadin-responsive\">Download the "
+ "Responsive add-on</a></p>", ContentMode.HTML);
description.addStyleName("description");
split.addComponent(description);
// Add the responsive capabilities to the components
new Responsive(grid);
new Responsive(description);
}
示例10: InitialLayout
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
/**
* Im Konstruktor wird das Layout erstellt.
*
* @author Marco Glaser
*
*/
public InitialLayout(){
mainLayout.setSizeFull();
mainLayout.setStyleName("mainLayout");
leftLayout.setSizeFull();
leftLayout.setStyleName("leftContainer");
rightLayout.setSizeFull();
bottomLayout.setSizeFull();
bottomLeftLayout.setSizeFull();
horizontalSplitPanel = new HorizontalSplitPanel();
horizontalSplitPanel.setSplitPosition(30, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
horizontalSplitPanel.setLocked(true);
horizontalSplitPanel.setStyleName("horizontalMain");
verticalSplitPanel = new VerticalSplitPanel();
verticalSplitPanel.setSplitPosition(15, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
verticalSplitPanel.setLocked(true);
verticalSplitPanel.setWidth(90, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
verticalSplitPanel.setHeight(100, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
horizontalSplitPanelRight = new HorizontalSplitPanel();
horizontalSplitPanelRight.setSplitPosition(30, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
horizontalSplitPanelRight.setLocked(true);
horizontalSplitPanelRight.addStyleName("horizontalBottom");
horizontalSplitPanelRight.setHeight(90, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
horizontalSplitPanelRight.setWidth(100, com.vaadin.terminal.Sizeable.UNITS_PERCENTAGE);
leftL = new Label("links");
rightTopL = new Label("rechts Oben");
rightBottomL = new Label("rechts Unten");
leftBottomL = new Label("links Unten");
leftLayout.addComponent(leftL);
rightLayout.addComponent(verticalSplitPanel);
topRightLayout.addComponent(rightTopL);
bottomRightLayout.addComponent(rightBottomL);
// bottomLeftLayout.addComponent(leftBottomL);
bottomLayout.addComponent(horizontalSplitPanelRight);
horizontalSplitPanel.addComponent(leftLayout);
horizontalSplitPanel.addComponent(rightLayout);
verticalSplitPanel.addComponent(topRightLayout);
verticalSplitPanel.addComponent(bottomLayout);
horizontalSplitPanelRight.addComponent(bottomLeftLayout);
horizontalSplitPanelRight.addComponent(bottomRightLayout);
rightLayout.setComponentAlignment(verticalSplitPanel, Alignment.MIDDLE_CENTER);
bottomLayout.setComponentAlignment(horizontalSplitPanelRight, Alignment.MIDDLE_CENTER);
mainLayout.addComponent(horizontalSplitPanel);
}
示例11: generateUi
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
/**
* Erstelle das GUI zum Prozessschritt "Perioden"
*
* @author Daniel Dengler
*/
private void generateUi() {
setSizeFull();
setSplitPosition(60, UNITS_PERCENTAGE);
setSizeFull();
setLocked(true);
setStyleName("small");
setMargin(true);
horizontalPanel = new HorizontalSplitPanel();
horizontalPanel.setSplitPosition(35, UNITS_PERCENTAGE);
horizontalPanel.setSizeFull();
horizontalPanel.setLocked(true);
horizontalPanel.setStyleName("small");
setFirstComponent(horizontalPanel);
VerticalLayout infoBox = new VerticalLayout();
infoBox.setMargin(true);
Label infoText1 = new Label ("<h3>Eingabe der Perioden</h3>");
infoText1.setContentMode(Label.CONTENT_XHTML);
Label infoText2 = new Label("Der Zeitstrahl ist gemäß Ihren getätigten Eingaben vorgegeben. Mit einem Klick auf den „Jahresbutton“ können Sie die entsprechenden Werte eintragen.");
Label infoText3 = new Label ("<h3>Direkte Eingabe der Cashflows:</h3>");
infoText3.setContentMode(Label.CONTENT_XHTML);
Label infoText4 = new Label ("Wählen Sie nun bitte die links angezeigten Perioden aus und geben Sie für jede Periode sowohl den Cashflow als auch das Fremdkapital der jeweiligen Periode an.");
Label infoText5 = new Label ("<h3>Gesamtkostenverfahren:</h3>");
infoText5.setContentMode(Label.CONTENT_XHTML);
Label infoText6 = new Label ("Wählen Sie nun bitte die links angezeigten Perioden aus und geben Sie für jede Periode die abgefragten Daten zur Berechnung des Cashflows an. Die benötigten Datensätze entnehmen Sie bitte Ihrer Gewinn- und Verlustrechnung, erstellt nach dem Gesamtkostenverfahren.");
Label infoText7 = new Label ("<h3>Umsatzkostenverfahren:</h3>");
infoText7.setContentMode(Label.CONTENT_XHTML);
Label infoText8 = new Label ("Wählen Sie nun bitte die links angezeigten Perioden aus und geben Sie für jede Periode die abgefragten Daten zur Berechnung des Cashflows an. Die benötigten Datensätze entnehmen Sie bitte Ihrer Gewinn- und Verlustrechnung, erstellt nach dem Umsatzkostenverfahren.");
infoBox.addComponent(infoText1);
infoBox.addComponent(infoText2);
infoBox.addComponent(infoText3);
infoBox.addComponent(infoText4);
infoBox.addComponent(infoText5);
infoBox.addComponent(infoText6);
infoBox.addComponent(infoText7);
infoBox.addComponent(infoText8);
setSecondComponent(infoBox);
}
示例12: init
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@PostConstruct
protected void init() {
setSizeFull();
tabbedPanel = new TabbedPanel();
HorizontalSplitPanel leftSplit = new HorizontalSplitPanel();
leftSplit.setSizeFull();
leftSplit.setSplitPosition(UIConstants.DEFAULT_LEFT_SPLIT, Unit.PIXELS);
VerticalLayout container = new VerticalLayout();
container.setSizeFull();
container.addComponent(tabbedPanel);
leftSplit.setSecondComponent(container);
table = new TreeTable();
table.addStyleName(ValoTheme.TREETABLE_NO_HORIZONTAL_LINES);
table.addStyleName(ValoTheme.TREETABLE_NO_STRIPES);
table.addStyleName(ValoTheme.TREETABLE_NO_VERTICAL_LINES);
table.addStyleName(ValoTheme.TREETABLE_BORDERLESS);
table.setColumnHeaderMode(ColumnHeaderMode.HIDDEN);
table.setSizeFull();
table.setCacheRate(100);
table.setPageLength(100);
table.setImmediate(true);
table.setSelectable(true);
table.addItemClickListener(this);
table.addStyleName("noselect");
table.addContainerProperty("id", String.class, null);
table.setVisibleColumns(new Object[] { "id" });
table.setColumnExpandRatio("id", 1);
addItem("Users", Icons.USER);
addItem("Groups", Icons.GROUP);
addItem("REST", Icons.REST);
addItem("General Settings", Icons.SETTINGS);
addItem("Plugin Repositories", Icons.DATABASE);
addItem("Plugins", Icons.COMPONENT);
addItem("Mail Server", Icons.EMAIL);
addItem("Notifications", Icons.NOTIFICATION);
addItem("Active Users", FontAwesome.USERS);
addItem("Audit Events", FontAwesome.BARS);
addItem("Logging", Icons.LOGGING);
addItem("About", FontAwesome.QUESTION);
VerticalLayout navigator = new VerticalLayout();
navigator.addStyleName(ValoTheme.MENU_ROOT);
navigator.setSizeFull();
leftSplit.setFirstComponent(navigator);
MenuBar leftMenuBar = new MenuBar();
leftMenuBar.addStyleName(ValoTheme.MENUBAR_BORDERLESS);
leftMenuBar.setWidth(100, Unit.PERCENTAGE);
navigator.addComponent(leftMenuBar);
navigator.addComponent(table);
navigator.setExpandRatio(table, 1);
addComponent(leftSplit);
}
示例13: EditFlowPanel
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
public EditFlowPanel(ApplicationContext context, String flowId, DesignNavigator designNavigator, TabbedPanel tabs) {
this.configurationService = context.getConfigurationService();
this.flow = configurationService.findFlow(flowId);
this.readOnly = context.isReadOnly(configurationService.findProjectVersion(flow.getProjectVersionId()), Privilege.DESIGN);
this.context = context;
this.tabs = tabs;
this.designNavigator = designNavigator;
this.propertySheet = new PropertySheet(context, tabs, readOnly);
this.propertySheet.setListener((components) -> {
List<FlowStep> steps = new ArrayList<FlowStep>();
for (Component c : components) {
steps.add(EditFlowPanel.this.flow.findFlowStepWithComponentId(c.getId()));
}
refreshStepOnDiagram(steps);
});
propertySheet.setCaption("Property Sheet");
componentPalette = new EditFlowPalette(this, context, flow.getProjectVersionId());
addComponent(componentPalette);
rightLayout = new VerticalLayout();
rightLayout.setSizeFull();
rightLayout.addComponent(buildButtonBar());
// Create two different layouts for the user to toggle between.
vSplit = new VerticalSplitPanel();
vSplit.setSizeFull();
vSplit.setSplitPosition(MAX_PANEL_POSITION, Unit.PERCENTAGE);
hSplit = new HorizontalSplitPanel();
hSplit.setSizeFull();
hSplit.setSplitPosition(MAX_PANEL_POSITION, Unit.PERCENTAGE);
diagramLayout = new VerticalLayout();
diagramLayout.setWidth(10000, Unit.PIXELS);
diagramLayout.setHeight(10000, Unit.PIXELS);
DragAndDropWrapper wrapper = new DragAndDropWrapper(diagramLayout);
wrapper.setSizeUndefined();
wrapper.setDropHandler(new DropHandler());
flowPanel = new Panel();
flowPanel.setSizeFull();
flowPanel.addStyleName(ValoTheme.PANEL_WELL);
flowPanel.setContent(wrapper);
if (isVerticalView()) {
vSplit.addComponent(flowPanel);
vSplit.addComponent(propertySheet);
rightLayout.addComponent(vSplit);
rightLayout.setExpandRatio(vSplit, 1);
} else {
hSplit.addComponent(flowPanel);
hSplit.addComponent(propertySheet);
rightLayout.addComponent(hSplit);
rightLayout.setExpandRatio(hSplit, 1);
}
addComponent(rightLayout);
setExpandRatio(rightLayout, 1);
redrawFlow();
}
示例14: buildUI
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
protected void buildUI() {
ButtonBar buttonBar = new ButtonBar();
addComponent(buttonBar);
if (!readOnly) {
Button testButton = buttonBar.addButton("Test", FontAwesome.FILE_CODE_O);
testButton.addClickListener(new TestClickListener());
}
filterField = buttonBar.addFilter();
filterField.addTextChangeListener(this);
HorizontalSplitPanel splitPanel = new HorizontalSplitPanel();
splitPanel.setSizeFull();
splitPanel.setSplitPosition(50, Unit.PERCENTAGE);
VerticalLayout leftLayout = new VerticalLayout();
editor = new AceEditor();
editor.setMode(AceMode.xml);
editor.setSizeFull();
editor.setHighlightActiveLine(true);
editor.setShowPrintMargin(false);
editor.addTextChangeListener(new StylesheetChangeListener());
editor.setValue(component.findSetting(XsltProcessor.XSLT_PROCESSOR_STYLESHEET).getValue());
leftLayout.addComponent(new Label("XSLT Stylesheet"));
leftLayout.addComponent(editor);
leftLayout.setExpandRatio(editor, 1.0f);
leftLayout.setSizeFull();
splitPanel.setFirstComponent(leftLayout);
VerticalLayout rightLayout = new VerticalLayout();
rightLayout.setSizeFull();
rightLayout.addComponent(new Label("Sample Input XML"));
textArea = new TextArea();
textArea.setEnabled(false);
textArea.setSizeFull();
textArea.setValue(getSampleXml());
rightLayout.addComponent(textArea);
rightLayout.setExpandRatio(textArea, 1.0f);
splitPanel.setSecondComponent(rightLayout);
addComponent(splitPanel);
setExpandRatio(splitPanel, 1.0f);
textArea.setReadOnly(readOnly);
editor.setReadOnly(readOnly);
}
示例15: attach
import com.vaadin.ui.HorizontalSplitPanel; //导入方法依赖的package包/类
@Override
public void attach() {
super.attach();
// Setup the map in the findLayers pane
splDivider = new HorizontalSplitPanel();
mainLayout = new VerticalLayout();
left = new VerticalLayout();
right = new VerticalLayout();
exportProps = new ExportProps();
mapModel = new MapModel();
// Views
findLayers = new FindLayersViewComponent();
modifyLayers = new SetupMapViewComponent();
exportOptions = new ExportOptionsViewComponent(exportProps);
mapToolbar = new MapToolbarViewComponent();
mapComponent = new OpenLayersMapViewComponent();
// Models
setupMapModel = new SetupMapModel(this);
// Presenters
findLayersPresenter = new FindLayersPresenter(findLayers, mapComponent, mapModel);
setupMapPresenter = new SetupMapPresenter(getSetupMapModel(), modifyLayers, mapComponent, mapModel);
exportOptionsPresenter = new ExportOptionsPresenter(exportOptions);
exportOptions.addListener(setupMapPresenter);
refresher = new Refresher();
addComponent(refresher);
setCaption("ExpressZip");
setSizeFull();
splDivider.setSplitPosition(351, UNITS_PIXELS);
mainLayout.setSizeFull();
mainLayout.addComponent(mapToolbar);
mainLayout.addComponent(splDivider);
mainLayout.setExpandRatio(splDivider, 1f);
splDivider.setSizeFull();
splDivider.addComponent(left);
splDivider.addComponent(right);
setContent(mainLayout);
right.setSpacing(true);
right.setSizeFull();
left.setSizeFull();
left.addComponent(findLayers);
setTheme("ExpressZip");
// http://docs.geotools.org/latest/userguide/library/referencing/order.html
System.setProperty("org.geotools.referencing.forceXY", "true");
right.addComponent(mapComponent);
right.setExpandRatio(mapComponent, 1f);
try {
findLayersPresenter.paneEntered();
} catch (Exception e) {
logger.error("Failed setting up map", e);
showNotification("Setting Up Map Failed", "Check logs on server", Notification.TYPE_ERROR_MESSAGE);
}
}