Skip to content

Commit

Permalink
Adding UnixPropertiesLayout
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jun 6, 2022
1 parent 199accb commit f99c35d
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/main/java/org/luwrain/app/commander/UnixPropertiesLayout.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
Copyright 2012-2021 Michael Pozhidaev <[email protected]>
This file is part of LUWRAIN.
LUWRAIN is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
LUWRAIN is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
*/

package org.luwrain.app.commander;

import java.io.*;
import java.nio.file.*;
import java.nio.file.attribute.*;

import org.luwrain.core.*;
import org.luwrain.core.events.*;
import org.luwrain.controls.*;
import org.luwrain.app.base.*;

final class UnixPropertiesLayout extends LayoutBase
{
private final App app;
final FormArea formArea;

UnixPropertiesLayout(App app, File[] files, Runnable closing)
{
super(app);
NullCheck.notNullItems(files, "files");
NullCheck.notNull(closing, "closing");
this.app = app;
this.formArea = new FormArea(getControlContext()){
@Override public String getAreaName()
{
return app.getStrings().infoAreaName();
}
};
setAreaLayout(formArea, null);
}
}

0 comments on commit f99c35d

Please sign in to comment.