1/**
2 * Copyright (c) 2008, http://www.snakeyaml.org
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.yaml.snakeyaml.extensions.compactnotation;
17
18import java.util.List;
19
20public class ManyListsTable {
21    private String id;
22    private List<Row> rows;
23    private List<String> names;
24
25    public ManyListsTable(String id) {
26        this.id = id;
27    }
28
29    public List<Row> getRows() {
30        return rows;
31    }
32
33    public void setRows(List<Row> rows) {
34        this.rows = rows;
35    }
36
37    public String getId() {
38        return id;
39    }
40
41    public List<String> getNames() {
42        return names;
43    }
44
45    public void setNames(List<String> names) {
46        this.names = names;
47    }
48}
49