ソースを参照

Use correct state classes for Vertical and HorizontalLayout

Change-Id: Ifa52a2ff7225076129de9b0f964b82704221dccd
tags/7.6.0.alpha4
Artur Signell 8年前
コミット
15de371e30

+ 7
- 0
server/src/com/vaadin/ui/HorizontalLayout.java ファイルの表示

*/ */
package com.vaadin.ui; package com.vaadin.ui;


import com.vaadin.shared.ui.orderedlayout.HorizontalLayoutState;

/** /**
* Horizontal layout * Horizontal layout
* *
addComponents(children); addComponents(children);
} }


@Override
protected HorizontalLayoutState getState() {
return (HorizontalLayoutState) super.getState();
}

} }

+ 7
- 0
server/src/com/vaadin/ui/VerticalLayout.java ファイルの表示

*/ */
package com.vaadin.ui; package com.vaadin.ui;


import com.vaadin.shared.ui.orderedlayout.VerticalLayoutState;

/** /**
* Vertical layout * Vertical layout
* *
this(); this();
addComponents(children); addComponents(children);
} }

@Override
protected VerticalLayoutState getState() {
return (VerticalLayoutState) super.getState();
}
} }

読み込み中…
キャンセル
保存