
net.sf.jtables.table.impl.AnnotatedMutableTableImpl Maven / Gradle / Ivy
/**********************************************************************
Copyright (c) 2009-2013 Alexander Kerner. All rights reserved.
Licensed 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 net.sf.jtables.table.impl;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import net.sf.jtables.table.Column;
import net.sf.jtables.table.Row;
import net.sf.jtables.table.TableMutableAnnotated;
import net.sf.kerner.utils.collections.ObjectToIndexMapper;
import net.sf.kerner.utils.collections.impl.ObjectToIndexMapperImpl;
import net.sf.kerner.utils.collections.list.impl.UtilList;
import net.sf.kerner.utils.io.UtilIO;
/**
*
* Default implementation for {@link TableMutableAnnotated}.
*
*
* Example:
*
*
*
*
*
* TODO example
*
*
*
*
* last reviewed: 2013-02-27
*
*
* @author Alexander Kerner
* @version 2013-02-27
*
* @param
* type of elements in {@code Table}
*/
public class AnnotatedMutableTableImpl extends MutableTableImpl implements TableMutableAnnotated {
/**
* row mappings.
*/
protected volatile ObjectToIndexMapper
© 2015 - 2025 Weber Informatics LLC | Privacy Policy