Android Open Source - LitePal Associations Info






From Project

Back to project page LitePal.

License

The source code is released under:

Apache License

If you think the Android project LitePal listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C)  Tony Green, Litepal Framework Open Source Project
 *//from   ww  w.j  a va 2 s  . c  o m
 * 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 org.litepal.crud.model;

import java.lang.reflect.Field;

/**
 * This model holds necessary information when comes to analyze and handle
 * associated models of self model.
 * 
 * @author Tony Green
 * @since 1.1
 */
public class AssociationsInfo {

  /**
   * The class name of self class.
   */
  private String selfClassName;

  /**
   * The class name of the class which associated with self class.
   */
  private String associatedClassName;

  /**
   * The class which holds foreign key.
   */
  private String classHoldsForeignKey;

  /**
   * The field of self class to declare has association with other class.
   */
  private Field associateOtherModelFromSelf;

  /**
   * The field of the associated class to declare has association with self
   * class.
   */
  private Field associateSelfFromOtherModel;

  /**
   * The association type, including Many2One One2One Many2Many.
   */
  private int associationType;

  /**
   * Get the class name of self class.
   * 
   * @return The self class name.
   */
  public String getSelfClassName() {
    return selfClassName;
  }

  /**
   * Set the class name of self class.
   * 
   * @param selfClassName
   *            The self class name to set.
   */
  public void setSelfClassName(String selfClassName) {
    this.selfClassName = selfClassName;
  }

  /**
   * Get the class name of the class which associated with self class.
   * 
   * @return The associated class name.
   */
  public String getAssociatedClassName() {
    return associatedClassName;
  }

  /**
   * Set the class name of the class which associated with self class.
   * 
   * @param associatedClassName
   *            The associated class name to set.
   */
  public void setAssociatedClassName(String associatedClassName) {
    this.associatedClassName = associatedClassName;
  }

  /**
   * Get the class which holds foreign key.
   * 
   * @return The class which holds foreign key.
   */
  public String getClassHoldsForeignKey() {
    return classHoldsForeignKey;
  }

  /**
   * Set the class which holds foreign key.
   * 
   * @param classHoldsForeignKey
   *            The class which holds foreign key to set.
   */
  public void setClassHoldsForeignKey(String classHoldsForeignKey) {
    this.classHoldsForeignKey = classHoldsForeignKey;
  }

  /**
   * Get the field of self class which declares has association with other
   * class.
   * 
   * @return The field which declares has association with other class.
   */
  public Field getAssociateOtherModelFromSelf() {
    return associateOtherModelFromSelf;
  }

  /**
   * Set the field of self class which declares has association with other
   * class.
   * 
   * @param associateOtherModelFromSelf
   *            The field which declares has association with other class to
   *            set.
   */
  public void setAssociateOtherModelFromSelf(Field associateOtherModelFromSelf) {
    this.associateOtherModelFromSelf = associateOtherModelFromSelf;
  }

  /**
   * Get the field of the associated class which declares has association with
   * self class.
   * 
   * @return The field of the associated class which declares has association
   *         with self class.
   */
  public Field getAssociateSelfFromOtherModel() {
    return associateSelfFromOtherModel;
  }

  /**
   * Set the field of the associated class which declares has association with
   * self class.
   * 
   * @param associateSelfFromOtherModel
   *            The field of the associated class which declares has
   *            association with self class to set.
   */
  public void setAssociateSelfFromOtherModel(Field associateSelfFromOtherModel) {
    this.associateSelfFromOtherModel = associateSelfFromOtherModel;
  }

  /**
   * Get the association type.
   * 
   * @return The association type.
   */
  public int getAssociationType() {
    return associationType;
  }

  /**
   * Set the association type.
   * 
   * @param associationType
   *            Within ONE_TO_ONE, MANY_TO_ONE and MANY_TO_MANY constants.
   */
  public void setAssociationType(int associationType) {
    this.associationType = associationType;
  }

  /**
   * Override equals method to make sure that if two associated classes in the
   * association info model are same ignoring sides, they are same association
   * info model.
   */
  @Override
  public boolean equals(Object o) {
    if (o instanceof AssociationsInfo) {
      AssociationsInfo other = (AssociationsInfo) o;
      if (o != null && other != null) {
        if (other.getAssociationType() == associationType
            && other.getClassHoldsForeignKey().equals(classHoldsForeignKey)) {
          if (other.getSelfClassName().equals(selfClassName)
              && other.getAssociatedClassName().equals(associatedClassName)) {
            return true;
          }
          if (other.getSelfClassName().equals(associatedClassName)
              && other.getAssociatedClassName().equals(selfClassName)) {
            return true;
          }
        }
      }
    }
    return false;
  }

}




Java Source Code List

org.litepal.LitePalApplication.java
org.litepal.LitePalBase.java
org.litepal.crud.AssociationsAnalyzer.java
org.litepal.crud.ClusterQuery.java
org.litepal.crud.DataHandler.java
org.litepal.crud.DataSupport.java
org.litepal.crud.DeleteHandler.java
org.litepal.crud.DynamicExecutor.java
org.litepal.crud.Many2ManyAnalyzer.java
org.litepal.crud.Many2OneAnalyzer.java
org.litepal.crud.One2OneAnalyzer.java
org.litepal.crud.QueryHandler.java
org.litepal.crud.SaveHandler.java
org.litepal.crud.UpdateHandler.java
org.litepal.crud.model.AssociationsInfo.java
org.litepal.exceptions.DataSupportException.java
org.litepal.exceptions.DatabaseGenerateException.java
org.litepal.exceptions.GlobalException.java
org.litepal.exceptions.InvalidAttributesException.java
org.litepal.exceptions.ParseConfigurationFileException.java
org.litepal.litepalsample.activity.AggregateActivity.java
org.litepal.litepalsample.activity.AverageSampleActivity.java
org.litepal.litepalsample.activity.CRUDActivity.java
org.litepal.litepalsample.activity.CountSampleActivity.java
org.litepal.litepalsample.activity.DeleteSampleActivity.java
org.litepal.litepalsample.activity.MainActivity.java
org.litepal.litepalsample.activity.ManageTablesActivity.java
org.litepal.litepalsample.activity.MaxSampleActivity.java
org.litepal.litepalsample.activity.MinSampleActivity.java
org.litepal.litepalsample.activity.ModelListActivity.java
org.litepal.litepalsample.activity.ModelStructureActivity.java
org.litepal.litepalsample.activity.QuerySampleActivity.java
org.litepal.litepalsample.activity.SaveSampleActivity.java
org.litepal.litepalsample.activity.SumSampleActivity.java
org.litepal.litepalsample.activity.TableListActivity.java
org.litepal.litepalsample.activity.TableStructureActivity.java
org.litepal.litepalsample.activity.UpdateSampleActivity.java
org.litepal.litepalsample.adapter.DataArrayAdapter.java
org.litepal.litepalsample.adapter.StringArrayAdapter.java
org.litepal.litepalsample.model.Album.java
org.litepal.litepalsample.model.Singer.java
org.litepal.litepalsample.model.Song.java
org.litepal.litepalsample.util.Utility.java
org.litepal.model.Table_Schema.java
org.litepal.parser.LitePalAttr.java
org.litepal.parser.LitePalContentHandler.java
org.litepal.parser.LitePalParser.java
org.litepal.tablemanager.AssociationCreator.java
org.litepal.tablemanager.AssociationUpdater.java
org.litepal.tablemanager.Connector.java
org.litepal.tablemanager.Creator.java
org.litepal.tablemanager.Dropper.java
org.litepal.tablemanager.Generator.java
org.litepal.tablemanager.LitePalOpenHelper.java
org.litepal.tablemanager.Upgrader.java
org.litepal.tablemanager.model.AssociationsModel.java
org.litepal.tablemanager.model.TableModel.java
org.litepal.tablemanager.typechange.BooleanOrm.java
org.litepal.tablemanager.typechange.DateOrm.java
org.litepal.tablemanager.typechange.DecimalOrm.java
org.litepal.tablemanager.typechange.NumericOrm.java
org.litepal.tablemanager.typechange.OrmChange.java
org.litepal.tablemanager.typechange.TextOrm.java
org.litepal.util.BaseUtility.java
org.litepal.util.Const.java
org.litepal.util.DBUtility.java
org.litepal.util.LogUtil.java
org.litepal.util.SharedUtil.java