org.nuiton.jaxx.demo.feature.nav.content.MovieContentUI Maven / Gradle / Ivy
package org.nuiton.jaxx.demo.feature.nav.content;
/*-
* #%L
* JAXX :: Demo
* %%
* Copyright (C) 2008 - 2019 Code Lutin, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.awt.BorderLayout;
import java.awt.LayoutManager;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JTextPane;
import javax.swing.border.TitledBorder;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.nuiton.jaxx.demo.entities.Movie;
import org.nuiton.jaxx.runtime.JAXXContext;
import org.nuiton.jaxx.runtime.JAXXObjectDescriptor;
import org.nuiton.jaxx.runtime.JAXXUtil;
import org.nuiton.jaxx.runtime.binding.SimpleJAXXObjectBinding;
import org.nuiton.jaxx.runtime.swing.SwingUtil;
import static io.ultreia.java4all.i18n.I18n.t;
public class MovieContentUI extends AbstractContentUI {
/*-----------------------------------------------------------------------*/
/*---------------- Constants for all javaBean properties ----------------*/
/*-----------------------------------------------------------------------*/
public static final String PROPERTY_DATA = "data";
/*-----------------------------------------------------------------------*/
/*--------------- Constants for all none public bindings ---------------*/
/*-----------------------------------------------------------------------*/
private static final String BINDING_$JLABEL0_ICON = "$JLabel0.icon";
private static final String BINDING_$JTEXT_PANE0_TEXT = "$JTextPane0.text";
/*-----------------------------------------------------------------------*/
/*------------------------- Other static fields -------------------------*/
/*-----------------------------------------------------------------------*/
private static final String $jaxxObjectDescriptor = "H4sIAAAAAAAAAK1Vy1ITQRTtRBIIAcGgIOWGkgg+YCIrF6EU5FGSCkIZLCmzsTPTJE3NTLc9PWFgwcKFO3/AhVs3Fv9AubLKjVv+wSo+wdszeRBrEiIxiyTVfe+Zc889J/n2G8UcgeaYKGu2SyWztX3seZpwbUktouWWd3e3SvtEl6vE0QXlkgkUvCJRFC2ipNE4dyTSinlAygRIGYWUqSFlVpjFmU3sC0DZPBp05KFJnAohUqL7bZt1x8kUGpVZj7ui9qxQ1mHP+vlx4SxCVj9HEfI40O+HsR/9A0Bz6r48ilJDolR+H1dxxsR2GcgJapdhoGF1tmJix3mJLfIeHaP+PIpzLABMovkryePD+VAel2gsvVxypMC6XGG2hI7XG48levL3KAaxmLZHsHQF0Wxc1fSgWttkVUoarZz7yHGJ+gwssUTToUBQSyUlTtDdbEo43KRyG9tEonE1uqc5B6CElivUL1RlotEwnM4VdMFMU10B74nWpsaVKh9pdCXTuR3iyVrPrZae+oUqTYU/Z0Ed3myFHEjn8rhETMBLteD5p6roNgeLzLSzCFhSa1qy6Y5IEcWEC8cgZfs0KEO/gqrAytPtrawe4xd+ODkWXw/Oz+r+HQVyU5d1XYgqmIkLxolQa5RoJDCvK6mZ2cQ8W4RVEhNy7ud4tjPzQq0S2AOLGwpJU0jaC+xUAC3Wf3b6ffzdr2souo4GTYaNdazqN1BCVgQoxkzD48+WfHJDBwNqHEUTVgEZ2GGuXlnzOLYNXDJB29QitU1qkyksIWYlV5KnHqg221m1BsmTrfMfXz7dO60rFwHO6W46m+rF3qJ4wMHPfi3WoVlPcoe4BmtmNizFEfU5yms5uuu/z4TpkWSCQvawpBBYdH1RZXSqRG0DrAoiqL6H/kjq21zXsEOwBHpE3hBarkhV9eDqWPESEwYR6n4hHGWsC5TJCkx6BENiM8jtcyy2mUn1wx6BJ6rK8vr/hVXH2Q4I410QGyAGlcrgHfTvBiexB6rNq3X2CNQn4Ze0p6Euk2WyK4SlnhAgMxa1qeVahZokPZFZ65HMWNPXyyYt2xakucOe7nSzJwp/5R1oKYw/MicTLdgJAAA=";
private static final Logger log = LogManager.getLogger(MovieContentUI.class);
private static final long serialVersionUID = 1L;
/*-----------------------------------------------------------------------*/
/*------------------------ Protected components ------------------------*/
/*-----------------------------------------------------------------------*/
protected Movie data;
protected JSplitPane splitPane;
/*-----------------------------------------------------------------------*/
/*------------------------- Private components -------------------------*/
/*-----------------------------------------------------------------------*/
private MovieContentUI $AbstractContentUI0;
private JLabel $JLabel0;
private JScrollPane $JScrollPane0;
private JScrollPane $JScrollPane1;
private JTextPane $JTextPane0;
/*-----------------------------------------------------------------------*/
/*---------------------------- Constructors ----------------------------*/
/*-----------------------------------------------------------------------*/
public MovieContentUI(LayoutManager param0, boolean param1) {
super(param0 ,param1);
}
public MovieContentUI(JAXXContext param0, LayoutManager param1, boolean param2) {
super(param0 ,param1 ,param2);
}
public MovieContentUI(LayoutManager param0) {
super(param0);
}
public MovieContentUI(JAXXContext param0, LayoutManager param1) {
super(param0 ,param1);
}
public MovieContentUI() {
}
public MovieContentUI(JAXXContext param0) {
super(param0);
}
public MovieContentUI(boolean param0) {
super(param0);
}
public MovieContentUI(JAXXContext param0, boolean param1) {
super(param0 ,param1);
}
/*-----------------------------------------------------------------------*/
/*--------------------------- Statics methods ---------------------------*/
/*-----------------------------------------------------------------------*/
public static JAXXObjectDescriptor $getJAXXObjectDescriptor() {
return JAXXUtil.decodeCompressedJAXXObjectDescriptor($jaxxObjectDescriptor);
}
/*-----------------------------------------------------------------------*/
/*----------------------- Public acessor methods -----------------------*/
/*-----------------------------------------------------------------------*/
public Movie getData() {
return data;
}
public JSplitPane getSplitPane() {
return splitPane;
}
/*-----------------------------------------------------------------------*/
/*----------------------- Public mutator methods -----------------------*/
/*-----------------------------------------------------------------------*/
public void setData(Movie data) {
Movie oldValue = this.data;
this.data = data;
firePropertyChange(PROPERTY_DATA, oldValue, data);
}
/*-----------------------------------------------------------------------*/
/*--------------------- Protected acessors methods ---------------------*/
/*-----------------------------------------------------------------------*/
protected JLabel get$JLabel0() {
return $JLabel0;
}
protected JScrollPane get$JScrollPane0() {
return $JScrollPane0;
}
protected JScrollPane get$JScrollPane1() {
return $JScrollPane1;
}
protected JTextPane get$JTextPane0() {
return $JTextPane0;
}
/*-----------------------------------------------------------------------*/
/*--------------------- Components creation methods ---------------------*/
/*-----------------------------------------------------------------------*/
protected void addChildrenToSplitPane() {
splitPane.add($JScrollPane0, JSplitPane.LEFT);
splitPane.add($JScrollPane1, JSplitPane.RIGHT);
}
protected void createData() {
$objectMap.put("data", data = null);
}
protected void createSplitPane() {
$objectMap.put("splitPane", splitPane = new JSplitPane());
splitPane.setName("splitPane");
splitPane.setOneTouchExpandable(true);
splitPane.setResizeWeight(0.5);
}
/*-----------------------------------------------------------------------*/
/*------------------------ Internal jaxx methods ------------------------*/
/*-----------------------------------------------------------------------*/
@Override
protected void $initialize() {
if (log.isDebugEnabled()) {
log.debug(this);
}
$AbstractContentUI0 = this;
super.$initialize();
}
@Override
protected void $initialize_01_createComponents() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_01_createComponents();
$objectMap.put("$AbstractContentUI0", $AbstractContentUI0);
createData();
createSplitPane();
// inline creation of $JScrollPane0
$objectMap.put("$JScrollPane0", $JScrollPane0 = new JScrollPane());
$JScrollPane0.setName("$JScrollPane0");
// inline creation of $JTextPane0
$objectMap.put("$JTextPane0", $JTextPane0 = new JTextPane());
$JTextPane0.setName("$JTextPane0");
$JTextPane0.setEditable(false);
if ($JTextPane0.getFont() != null) {
$JTextPane0.setFont($JTextPane0.getFont().deriveFont((float) 11));
}
// inline creation of $JScrollPane1
$objectMap.put("$JScrollPane1", $JScrollPane1 = new JScrollPane());
$JScrollPane1.setName("$JScrollPane1");
// inline creation of $JLabel0
$objectMap.put("$JLabel0", $JLabel0 = new JLabel());
$JLabel0.setName("$JLabel0");
$JLabel0.setHorizontalAlignment(0);
// inline creation of $AbstractContentUI0
setName("$AbstractContentUI0");
}
@Override
protected void $initialize_02_registerDataBindings() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_02_registerDataBindings();
// register 2 data bindings
registerDataBinding(new SimpleJAXXObjectBinding(this, BINDING_$JTEXT_PANE0_TEXT, true ,"data") {
@Override
public void processDataBinding() {
SwingUtil.setText($JTextPane0, getHandler().getContent(getData()));
}
});
registerDataBinding(new SimpleJAXXObjectBinding(this, BINDING_$JLABEL0_ICON, true ,"data") {
@Override
public void processDataBinding() {
$JLabel0.setIcon(getHandler().getImage(getData()));
}
});
}
@Override
protected void $initialize_03_finalizeCreateComponents() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_03_finalizeCreateComponents();
// inline complete setup of $AbstractContentUI0
add(splitPane, BorderLayout.CENTER);
addChildrenToSplitPane();
// inline complete setup of $JScrollPane0
$JScrollPane0.getViewport().add($JTextPane0);
// inline complete setup of $JScrollPane1
$JScrollPane1.getViewport().add($JLabel0);
}
@Override
protected void $initialize_04_applyDataBindings() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_04_applyDataBindings();
}
@Override
protected void $initialize_05_setProperties() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_05_setProperties();
// apply 9 property setters
splitPane.setOrientation(JSplitPane.VERTICAL_SPLIT);
$JScrollPane0.setBorder(null);
$JScrollPane0.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
$JScrollPane0.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
$JTextPane0.setBorder(new TitledBorder(t("jaxxdemo.navigation.movie.title")));
$JScrollPane1.setBorder(new TitledBorder("Picture"));
$JScrollPane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
$JScrollPane1.setMinimumSize(SwingUtil.newMinDimension());
$JScrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
}
@Override
protected void $initialize_06_finalizeInitialize() {
if (log.isDebugEnabled()) {
log.debug(this);
}
super.$initialize_06_finalizeInitialize();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy