/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.karaf.shell.table; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Row { private List<Object> data; private List<String> content; Row() { data = new ArrayList<Object>(); content = new ArrayList<String>(); } Row(List<Col> cols) { this(); for (Col col : cols) { data.add(col.getHeader()); } } public void addContent(Object ... cellDataAr) { data.addAll(Arrays.asList(cellDataAr)); } void formatContent(List<Col> cols) { content.clear(); int c = 0; for (Col col : cols) { content.add(col.format(data.get(c))); c++; } } String getContent(List<Col> cols, String separator) { StringBuilder st = new StringBuilder(); int c = 0; if (cols.size() != content.size()) { throw new RuntimeException("Number of columns and number of content elements do not match"); } for (Col col : cols) { st.append(col.getContent(content.get(c))); if (c + 1 < cols.size()) { st.append(separator); } c++; } return st.toString(); } }