JavaDoc


001    /**
002     * Copyright (c) 2003 Daffodil Software Ltd all rights reserved,
003     * Modifications Copyright (c) 2008 Regiscope Digital Imaging Co, LLC, All rights reserved.
004     * This program is free software; you can redistribute it and/or modify
005     * it under the terms of version 2 of the GNU General Public License as
006     * published by the Free Software Foundation.
007     * There are special exceptions to the terms and conditions of the GPL
008     * as it is applied to this software. See the GNU General Public License for more details.
009     *
010     * This program is distributed in the hope that it will be useful,
011     * but WITHOUT ANY WARRANTY; without even the implied warranty of
012     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
013     * GNU General Public License for more details.
014     *
015     * You should have received a copy of the GNU General Public License
016     * along with this program; if not, write to the Free Software
017     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
018     */
019    
020    
021    package org.dbreplicator.replication.zip;
022    
023    import java.util.ArrayList;
024    
025    public class ImportedTablesInfo {
026      private ArrayList listOfDirectAscendents;
027      private ArrayList listOfAllAscendents;
028      private boolean cyclic;
029    
030      public ImportedTablesInfo() {
031      }
032    
033      public boolean isCyclic() {
034        return cyclic;
035      }
036      public void setIsCyclic(boolean cyclic0) {
037        cyclic = cyclic0;
038      }
039    
040      public ArrayList getListOfDirectAscendents() {
041        return listOfDirectAscendents;
042      }
043    
044      public void setListOfDirectAscendents(ArrayList listOfDirectAscendents0) {
045        listOfDirectAscendents = listOfDirectAscendents0;
046      }
047      public ArrayList getListOfAllAscendents() {
048        return listOfAllAscendents;
049      }
050      public void setListOfAllAscendents(ArrayList listOfAllAscendents0) {
051        listOfAllAscendents = listOfAllAscendents0;
052      }
053    
054    
055    }





























































Powered by Drupal - Theme by Danger4k