Package net.sf.minuteProject.architecture.query.impl

Examples of net.sf.minuteProject.architecture.query.impl.QueryCountInit


    public List<Presentation> countDistinct (Presentation whatMask, Presentation whereEqCriteria) {
       return partialLoadWithParentPresentation(whatMask, whereEqCriteria, null, new QuerySelectCountInit("presentation"), null, false);
    }  
     
    public Long count(Presentation whereEqCriteria) {
        List<Presentation> list = partialLoadWithParentPresentation(null, whereEqCriteria, null, new QueryCountInit("presentation"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here


    public List<Conference> countDistinct (Conference whatMask, Conference whereEqCriteria) {
       return partialLoadWithParentConference(whatMask, whereEqCriteria, null, new QuerySelectCountInit("conference"), null, false);
    }  
     
    public Long count(Conference whereEqCriteria) {
        List<Conference> list = partialLoadWithParentConference(null, whereEqCriteria, null, new QueryCountInit("conference"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<Speaker> countDistinct (Speaker whatMask, Speaker whereEqCriteria) {
       return partialLoadWithParentSpeaker(whatMask, whereEqCriteria, null, new QuerySelectCountInit("speaker"), null, false);
    }  
     
    public Long count(Speaker whereEqCriteria) {
        List<Speaker> list = partialLoadWithParentSpeaker(null, whereEqCriteria, null, new QueryCountInit("speaker"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<Address> countDistinct (Address whatMask, Address whereEqCriteria) {
       return partialLoadWithParentAddress(whatMask, whereEqCriteria, null, new QuerySelectCountInit("address"), null, false);
    }  
     
    public Long count(Address whereEqCriteria) {
        List<Address> list = partialLoadWithParentAddress(null, whereEqCriteria, null, new QueryCountInit("address"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<StatMbByRole> countDistinct (StatMbByRole whatMask, StatMbByRole whereEqCriteria) {
       return partialLoadWithParentStatMbByRole(whatMask, whereEqCriteria, null, new QuerySelectCountInit("statMbByRole"), null, false);
    }  
     
    public Long count(StatMbByRole whereEqCriteria) {
        List<StatMbByRole> list = partialLoadWithParentStatMbByRole(null, whereEqCriteria, null, new QueryCountInit("statMbByRole"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<PresentationPlace> countDistinct (PresentationPlace whatMask, PresentationPlace whereEqCriteria) {
       return partialLoadWithParentPresentationPlace(whatMask, whereEqCriteria, null, new QuerySelectCountInit("presentationPlace"), null, false);
    }  
     
    public Long count(PresentationPlace whereEqCriteria) {
        List<PresentationPlace> list = partialLoadWithParentPresentationPlace(null, whereEqCriteria, null, new QueryCountInit("presentationPlace"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<Evaluation> countDistinct (Evaluation whatMask, Evaluation whereEqCriteria) {
       return partialLoadWithParentEvaluation(whatMask, whereEqCriteria, null, new QuerySelectCountInit("evaluation"), null, false);
    }  
     
    public Long count(Evaluation whereEqCriteria) {
        List<Evaluation> list = partialLoadWithParentEvaluation(null, whereEqCriteria, null, new QueryCountInit("evaluation"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<Role> countDistinct (Role whatMask, Role whereEqCriteria) {
       return partialLoadWithParentRole(whatMask, whereEqCriteria, null, new QuerySelectCountInit("role"), null, false);
    }  
     
    public Long count(Role whereEqCriteria) {
        List<Role> list = partialLoadWithParentRole(null, whereEqCriteria, null, new QueryCountInit("role"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<StatMbPerCtryConf> countDistinct (StatMbPerCtryConf whatMask, StatMbPerCtryConf whereEqCriteria) {
       return partialLoadWithParentStatMbPerCtryConf(whatMask, whereEqCriteria, null, new QuerySelectCountInit("statMbPerCtryConf"), null, false);
    }  
     
    public Long count(StatMbPerCtryConf whereEqCriteria) {
        List<StatMbPerCtryConf> list = partialLoadWithParentStatMbPerCtryConf(null, whereEqCriteria, null, new QueryCountInit("statMbPerCtryConf"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

    public List<Country> countDistinct (Country whatMask, Country whereEqCriteria) {
       return partialLoadWithParentCountry(whatMask, whereEqCriteria, null, new QuerySelectCountInit("country"), null, false);
    }  
     
    public Long count(Country whereEqCriteria) {
        List<Country> list = partialLoadWithParentCountry(null, whereEqCriteria, null, new QueryCountInit("country"), null, false);   
      if (!list.isEmpty())
        return list.get(0).getCount__();
      return 0L;
    }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.architecture.query.impl.QueryCountInit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.