Package com.uens.query

Examples of com.uens.query.ViewProcessor


    initRootMarker();
  }

  private void initRootMarker() throws JRScriptletException {
    try {
      ViewProcessor vp = (ViewProcessor) getParameterValue(AnalysisProcessorImpl.REPORT_VIEWPROCESSOR_PARAM);
      if (vp != null) {
        Marker m = vp.getMarker(7);
        rootMarker = m.getName();
      }
    } catch (RemoteException e) {
      throw new JRScriptletException(e.getMessage(), e);
    }
View Full Code Here


  public String getRPMarker() throws JRScriptletException {
    if (rootMarker == null) {
      return null;
    }
    ViewProcessor vp = (ViewProcessor) getParameterValue(AnalysisProcessorImpl.REPORT_VIEWPROCESSOR_PARAM);
    if (vp == null) {
      return null;
    }
    try {
      Integer rpCode = (Integer) getFieldValue("RPCODE");
      MarkerExt[] ams = vp.getAssignedMarkers("EPRECORDPOINT", rpCode);
      String result = null;
      for (int i = 0; i < ams.length; i++) {
        MarkerExt m = ams[i];
        if (m.getName().startsWith(rootMarker)) {
          String[] parts = m.getName().split(" => ");
View Full Code Here

TOP

Related Classes of com.uens.query.ViewProcessor

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.