Initialize
[sdk/ide/product.git] / org.eclipse.jst.pagedesigner / src / org / eclipse / jst / pagedesigner / tableedit / RowHandle.java
1 /*******************************************************************************\r
2  * Copyright (c) 2006 Sybase, Inc. and others.\r
3  *\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     Sybase, Inc. - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.eclipse.jst.pagedesigner.tableedit;\r
13 \r
14 import org.eclipse.gef.GraphicalEditPart;\r
15 \r
16 /**\r
17  * @author mengbo\r
18  * @version 1.5\r
19  */\r
20 public class RowHandle extends TableSideItemHandle {\r
21 \r
22         /**\r
23          * @param owner\r
24          * @param index\r
25          */\r
26         public RowHandle(GraphicalEditPart owner, int index) {\r
27                 super(owner, true, index);\r
28         }\r
29 \r
30 }\r