source: osm/applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/spreadsheet/Column.java@ 28000

Last change on this file since 28000 was 28000, checked in by donvip, 12 years ago

Import new "opendata" JOSM plugin

File size: 980 bytes
Line 
1/*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved.
5 *
6 * The contents of this file are subject to the terms of the GNU
7 * General Public License Version 3 only ("GPL").
8 * You may not use this file except in compliance with the License.
9 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
10 * See the License for the specific language governing permissions and limitations under the License.
11 *
12 * When distributing the software, include this License Header Notice in each file.
13 *
14 */
15
16package org.jopendocument.dom.spreadsheet;
17
18import org.jdom.Element;
19import org.jopendocument.dom.ODDocument;
20
21public class Column<D extends ODDocument> extends TableCalcNode<ColumnStyle, D> {
22
23 public Column(final Table<D> parent, Element tableColElem) {
24 super(parent.getODDocument(), tableColElem, ColumnStyle.class);
25 }
26}
Note: See TracBrowser for help on using the repository browser.