Examples of VSXWebServiceVOTableStarNameAndAUIDSource


Examples of org.aavso.tools.vstar.input.database.VSXWebServiceVOTableStarNameAndAUIDSource

      }

      String auid = dialog.getAuid();
      String starName = dialog.getStarName();

      VSXWebServiceVOTableStarNameAndAUIDSource vsx = new VSXWebServiceVOTableStarNameAndAUIDSource();

      // TODO: just use auid or star name and tell Will to fix doc (not
      // just auid)

      if (auid == null) {
        info = vsx.getStarByName(null, starName);
      }

      if (starName == null) {
        info = vsx.getStarByAUID(null, auid);
      }

      urlStr += "star=" + info.getAuid();
      urlStr += "&format=xml";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.