Sponsored Content
Full Discussion: Autosys-SDK
Top Forums UNIX for Advanced & Expert Users Autosys-SDK Post 302392027 by ksswamy on Wednesday 3rd of February 2010 07:14:15 AM
Old 02-03-2010
Autosys-SDK

Hi friends,

I am trying to validate the jil file programmatically. I plan to use the SDK provided by Autosys. Is CA provide any interfaces for this?

Another thing : What is Jil syntax checker or Jil verifier or Jil validator? Where is it available in autosys?

I am using R11 SP2 version of autosys SDK.

Regards,
ksswamy.

Last edited by ksswamy; 02-03-2010 at 09:57 AM..
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Documentation and books on Autosys Job Control Tool from Autosys

My project uses Autosys. I am new to this product and I don't know where to start from. Q1. Please provide me the link where I can get Autosys documentation Q2. Please refer a good book on Autosys. (Beginner/Intermediate Level) (0 Replies)
Discussion started by: gram77
0 Replies

2. OS X (Apple)

iPhone SDK?

Just need a little help learning to code using the iPhone SDK. HELP WOULD BE GREAT!!! (1 Reply)
Discussion started by: Nintenman
1 Replies

3. Programming

SDK For cdwriter

I have a problem. I try to write a cd writer program ins c# but I can't find any sdk. Any one who knows? Thank you in advance :) (5 Replies)
Discussion started by: cs05pp2
5 Replies

4. Solaris

error during the installation SDK 6

Dear Members, this java already install in my machine $ uname -a SunOS maxdmail.com 5.10 Generic_139556-08 i86pc i386 i86pc $ java -version java version "1.5.0_17" Java(TM) Platform, Standard Edition for Business (build 1.5.0_17-b04) Java HotSpot(TM) Client VM (build 1.5.0_17-b04,... (1 Reply)
Discussion started by: xxmasrawy
1 Replies

5. UNIX for Dummies Questions & Answers

Autosys: How to change a machine name in Autosys JIL.

All the autosys jobs are on server-1 and server-1 has been crashed due to some reason, Now I have to run 5 autosys jobs on server-2 (failover server) which are on server 1. How to do with Autosys command (which command needs to fired on JIL) (0 Replies)
Discussion started by: tp2115
0 Replies
QIntValidator(3qt)														QIntValidator(3qt)

NAME
QIntValidator - Validator which ensures that a string contains a valid integer within a specified range SYNOPSIS
#include <qvalidator.h> Inherits QValidator. Public Members QIntValidator ( QObject * parent, const char * name = 0 ) QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 ) ~QIntValidator () virtual QValidator::State validate ( QString & input, int & ) const void setBottom ( int ) void setTop ( int ) virtual void setRange ( int bottom, int top ) int bottom () const int top () const Properties int bottom - the validator's lowest acceptable value int top - the validator's highest acceptable value DESCRIPTION
The QIntValidator class provides a validator which ensures that a string contains a valid integer within a specified range. Example of use: QValidator* validator = new QIntValidator( 100, 999, this ); QLineEdit* edit = new QLineEdit( this ); // the edit lineedit will only accept integers between 100 and 999 edit->setValidator( validator ); Below we present some examples of validators. In practice they would normally be associated with a widget as in the example above. QString str; int pos = 0; QIntValidator v( 100, 999, this ); str = "1"; v.validate( str, pos ); // returns Intermediate str = "12"; v.validate( str, pos ); // returns Intermediate str = "123"; v.validate( str, pos ); // returns Acceptable str = "678"; v.validate( str, pos ); // returns Acceptable str = "1234"; v.validate( str, pos ); // returns Invalid str = "-123"; v.validate( str, pos ); // returns Invalid str = "abc"; v.validate( str, pos ); // returns Invalid str = "12cm"; v.validate( str, pos ); // returns Invalid The minimum and maximum values are set in one call with setRange() or individually with setBottom() and setTop(). See also QDoubleValidator, QRegExpValidator, and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QIntValidator::QIntValidator ( QObject * parent, const char * name = 0 ) Constructs a validator called name with parent parent, that accepts all integers. QIntValidator::QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 ) Constructs a validator called name with parent parent, that accepts integers from minimum to maximum inclusive. QIntValidator::~QIntValidator () Destroys the validator, freeing any resources allocated. int QIntValidator::bottom () const Returns the validator's lowest acceptable value. See the "bottom" property for details. void QIntValidator::setBottom ( int ) Sets the validator's lowest acceptable value. See the "bottom" property for details. void QIntValidator::setRange ( int bottom, int top ) [virtual] Sets the range of the validator to only accept integers between bottom and top inclusive. void QIntValidator::setTop ( int ) Sets the validator's highest acceptable value. See the "top" property for details. int QIntValidator::top () const Returns the validator's highest acceptable value. See the "top" property for details. QValidator::State QIntValidator::validate ( QString & input, int & ) const [virtual] Returns Acceptable if the input is an integer within the valid range, Intermediate if the input is an integer outside the valid range and Invalid if the input is not an integer. Note: If the valid range consists of just positive integers (e.g. 32 - 100) and input is a negative integer then Invalid is returned. int pos = 0; s = "abc"; v.validate( s, pos ); // returns Invalid s = "5"; v.validate( s, pos ); // returns Intermediate s = "50"; v.validate( s, pos ); // returns Valid Reimplemented from QValidator. Property Documentation int bottom This property holds the validator's lowest acceptable value. Set this property's value with setBottom() and get this property's value with bottom(). See also setRange(). int top This property holds the validator's highest acceptable value. Set this property's value with setTop() and get this property's value with top(). See also setRange(). SEE ALSO
http://doc.trolltech.com/qintvalidator.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qintvalidator.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QIntValidator(3qt)
All times are GMT -4. The time now is 10:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy