Ignore:
Timestamp:
07/25/12 18:37:30 (12 years ago)
Author:
npipsl
Message:

Interrogation BDD transition

Location:
geisa/persistence/interface/com/ether/dao
Files:
1 added
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • geisa/persistence/interface/com/ether/dao/IsotopeG03DAO.java

    r533 r536  
    22 
    33import com.ether.IsotopeG03; 
     4import com.ether.Pair; 
    45import com.ether.PersistenceException; 
    56import org.jetbrains.annotations.NotNull; 
     
    78 
    89import java.util.List; 
     10import java.util.Set; 
    911 
    1012/** 
     
    1315 */ 
    1416public interface IsotopeG03DAO 
    15         extends DomainAccessObject<IsotopeG03, Integer> 
     17        extends DomainAccessObject<IsotopeG03, Integer> 
    1618{ 
    1719//    @Nullable 
     
    2224 
    2325    @NotNull 
    24     List<IsotopeG03> getTransitionsByIsotopeG03Name( final String isotopeName ) 
     26    List<IsotopeG03> getTransitionsByIsotopeG03Name( final List<String> isotopeNameArray, final Float spectralRangeLower, final Float spectralRangeUpper) 
     27            throws PersistenceException; 
     28 
     29    @NotNull 
     30    List<IsotopeG03> getTransitionsByIsotopeG03NameByTransitionLower( final String isotopeName, final Float spectralRangeLower, final Float spectralRangeUpper, final String transitionLower) 
     31            throws PersistenceException; 
     32 
     33    @NotNull 
     34    List<Pair> getTransitionsLU( final List<String> isotopeNameArray,final Float spectralRangeLower, final Float spectralRangeUpper ) 
     35            throws PersistenceException; 
     36 
     37    @NotNull 
     38    Set<String> getTransitionsLower(final List<String> isotopesSelectedNameList,final Float spectralRangeLower, final Float spectralRangeUpper ) 
     39            throws PersistenceException; 
     40 
     41    @NotNull 
     42    Set<String> getTransitionsUpper(final List<String> isotopesSelectedNameList,final Float spectralRangeLower, final Float spectralRangeUpper ) 
    2543            throws PersistenceException; 
    2644} 
  • geisa/persistence/interface/com/ether/dao/IsotopeG09DAO.java

    r533 r536  
    11package com.ether.dao; 
    22 
    3 import com.ether.IsotopeG03; 
     3 
     4import com.ether.IsotopeG09; 
     5import com.ether.Pair; 
    46import com.ether.PersistenceException; 
    57import org.jetbrains.annotations.NotNull; 
    6 import org.jetbrains.annotations.Nullable; 
    78 
    89import java.util.List; 
     10import java.util.Set; 
    911 
    1012/** 
     
    1214 * @date july 2012 
    1315 */ 
    14 public interface IsotopeG03DAO 
    15         extends DomainAccessObject<IsotopeG03, Integer> 
     16public interface IsotopeG09DAO 
     17        extends DomainAccessObject<IsotopeG09, Integer> 
    1618{ 
    17 //    @Nullable 
    18 //    Plateform getPlateformById( @NotNull final Integer plateformId ) throws PersistenceException; 
     19    @NotNull 
     20    Set<String> getTransitionsLower( final List<String> isotopesSelectedNameList, final Float spectralRangeLower, final Float spectralRangeUpper ) 
     21            throws PersistenceException; 
    1922 
    2023    @NotNull 
    21     List<IsotopeG03> getAllIsotopeG03() throws PersistenceException; 
    22  
    23     @NotNull 
    24     List<IsotopeG03> getTransitionsByIsotopeG03Name( final String isotopeName ) 
     24    Set<String> getTransitionsUpper( final List<String> isotopesSelectedNameList, final Float spectralRangeLower, final Float spectralRangeUpper ) 
    2525            throws PersistenceException; 
    2626} 
  • geisa/persistence/interface/com/ether/dao/IsotopeIasiG03DAO.java

    r533 r536  
    11package com.ether.dao; 
    22 
    3 import com.ether.IsotopeG03; 
     3import com.ether.IsotopeIasiG03; 
     4import com.ether.Pair; 
    45import com.ether.PersistenceException; 
    56import org.jetbrains.annotations.NotNull; 
    6 import org.jetbrains.annotations.Nullable; 
    77 
    88import java.util.List; 
     9import java.util.Set; 
    910 
    1011/** 
     
    1213 * @date july 2012 
    1314 */ 
    14 public interface IsotopeG03DAO 
    15         extends DomainAccessObject<IsotopeG03, Integer> 
     15public interface IsotopeIasiG03DAO 
     16        extends DomainAccessObject<IsotopeIasiG03, Integer> 
    1617{ 
    1718//    @Nullable 
    1819//    Plateform getPlateformById( @NotNull final Integer plateformId ) throws PersistenceException; 
    1920 
    20     @NotNull 
    21     List<IsotopeG03> getAllIsotopeG03() throws PersistenceException; 
    2221 
    2322    @NotNull 
    24     List<IsotopeG03> getTransitionsByIsotopeG03Name( final String isotopeName ) 
     23    Set<String> getTransitionsLower( final List<String> isotopesSelectedNameList, final Float spectralRangeLower, final Float spectralRangeUpper ) 
     24            throws PersistenceException; 
     25 
     26    @NotNull 
     27    Set<String> getTransitionsUpper( final List<String> isotopesSelectedNameList, final Float spectralRangeLower, final Float spectralRangeUpper ) 
    2528            throws PersistenceException; 
    2629} 
Note: See TracChangeset for help on using the changeset viewer.