Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Anywhere/src/org/litesoft/uipopupsupport/SourceRelativeContextPopupPositioner.java

Diff revisions: vs.
  @@ -6,15 +6,11 @@
6 6
7 7 public class SourceRelativeContextPopupPositioner extends ContextPopupPositioner
8 8 {
9 - public SourceRelativeContextPopupPositioner( RectangleContainmentStrategy pRectangleContainmentStrategy,
10 - CommonRectangularPoint pPopupRelativeMeetingPoint,
11 - PointXY pClientPos, SizeXY pClientSize, //
12 - CommonRectangularPoint pSourceElementRelativeMeetingPoint,
13 - Rect pSourceElementRect )
9 + public SourceRelativeContextPopupPositioner( RectangleContainmentStrategy pRectangleContainmentStrategy, CommonRectangularPoint pPopupRelativeMeetingPoint, PointXY pClientPos, SizeXY pClientSize, //
10 + CommonRectangularPoint pSourceElementRelativeMeetingPoint, Rect pSourceElementRect )
14 11 {
15 12 super( pRectangleContainmentStrategy, pPopupRelativeMeetingPoint, pClientPos, pClientSize );
16 - UtilsCommon.assertNotNull( "SourceElementRelativeMeetingPoint",
17 - mSourceElementRelativeMeetingPoint = pSourceElementRelativeMeetingPoint );
13 + UtilsCommon.assertNotNull( "SourceElementRelativeMeetingPoint", mSourceElementRelativeMeetingPoint = pSourceElementRelativeMeetingPoint );
18 14 UtilsCommon.assertNotNull( "SourceElementRect", mSourceElementRect = pSourceElementRect );
19 15 }
20 16