Isis 3 Programmer Reference
|
Allows applications to translate simple text files. More...
#include <PvlToXmlTranslationManager.h>
Public Member Functions | |
PvlToXmlTranslationManager (const QString &transFile) | |
Constructs and initializes a TranslationManager object from given the Pvl translation file. More... | |
PvlToXmlTranslationManager (Pvl &inputLabel, const QString &transFile) | |
Constructs and initializes a TranslationManager object. More... | |
virtual | ~PvlToXmlTranslationManager () |
Destroys the TranslationManager object. More... | |
virtual QString | Translate (QString translationGroupName, int inputIndex=0) |
Returns a translated value. More... | |
void | Auto (QDomDocument &outputLabel) |
Automatically translate all the output names found in the translation table. More... | |
void | Auto (Pvl &inputLabel, QDomDocument &outputLabel) |
Set the inputLabel and automatically translate all the output names found in the translation table. More... | |
virtual const PvlKeyword & | InputKeyword (const QString translationGroupName) const |
Uses the translation file group name to find the input label's PvlKeyword that corresponds to the InputKey value of the translation table and returns it, if found. More... | |
virtual bool | InputHasKeyword (const QString translationGroupName) |
Indicates if the input keyword corresponding to the output name exists in the label. More... | |
void | SetLabel (Pvl &inputLabel) |
Internalizes a Pvl formatted label for translation. More... | |
QString | Translate (const QString translationGroupName, const QString inputKeyValue="") const |
Translates a single output value from the given translation group name and input value. More... | |
virtual void | Auto (Pvl &outputLabel) |
Automatically translate all the output names tagged as Auto in the translation table If a output name does not translate an error will be thrown by one of the support members. More... | |
virtual QStringList | parseSpecification (QString specification) const |
Parses and validates a dependency specification. More... | |
virtual PvlKeyword | InputGroup (const QString translationGroupName, const int inst=0) const |
Returns the input group name from the translation table corresponding to the output name argument. More... | |
virtual QString | InputKeywordName (const QString translationGroupName) const |
Returns the input keyword name from the translation table corresponding to the output name argument. More... | |
QString | InputDefault (const QString translationGroupName) const |
Returns the input default value from the translation table corresponding to the output name argument. More... | |
void | AddTable (std::istream &transStm) |
Adds the contents of a translation table to the searchable groups/keys Also performs a verification, to ensure that the translation table is valid. More... | |
void | AddTable (const QString &transFile) |
Adds the contents of a translation table to the searchable groups/keys. More... | |
Static Public Member Functions | |
static void | addElement (QDomElement &parent, QString name, QString value, QString units="") |
Add a QDomElement to the given parent with the indicated value and units. More... | |
static void | setElementValue (QDomElement &element, QString value, QString units="") |
Set the QDomElement's value, and units, if units != "". More... | |
static void | resetElementValue (QDomElement &element, QString value, QString units="") |
Reset the QDomElement's value, and units, if units != "". More... | |
Protected Member Functions | |
void | doTranslation (PvlGroup transGroup, QDomElement &parent) |
Translate the requested output name to output values using the input name and values or default value. More... | |
virtual const PvlContainer * | GetContainer (const PvlKeyword &inputGroup) const |
Return a container from the input label with the path given by the "InputPosition" keyword of the translation table. More... | |
virtual std::vector< std::pair< QString, int > > | validKeywords () const |
Returns a vector of valid keyword names and their sizes. More... | |
bool | checkDependencies (QDomElement element, PvlKeyword dependencies, bool isDebug) const |
QDomElement * | createParentElements (const QString translationGroupName, QDomElement &xml) |
Read the OutputPosition for the translation group name passed and create any parent elements specified by OutputPosition to prepare for translation. More... | |
void | addSiblings (PvlKeyword outputSiblings, QDomElement &parent) |
Take in outputSiblings PvlKeyword and turn each sibling into its corresponding QDomElement. More... | |
void | addAttributes (PvlKeyword something, QDomElement &parent) |
Take in the outputAttributes PvlKeyword and add each attribute to the appropriate element given as an argument. More... | |
virtual PvlKeyword | DoTranslation (const QString translationGroupName) |
Translate the requested output name to output values using the input name and values or default value. More... | |
virtual PvlContainer * | CreateContainer (const QString translationGroupName, Pvl &pvl) |
Creates all parent PVL containers for an output keyword. More... | |
Pvl & | TranslationTable () |
Protected accessor for pvl translation table passed into class. More... | |
const Pvl & | TranslationTable () const |
Protected accessor for const pvl translation table passed into class. More... | |
bool | hasInputDefault (const QString translationGroupName) |
Determines whether the given group has a default input value. More... | |
bool | IsAuto (const QString translationGroupName) |
Determines whether the given group should be automatically translated. More... | |
bool | IsOptional (const QString translationGroupName) |
Determines whether the translation group is optional. More... | |
PvlKeyword | OutputPosition (const QString translationGroupName) |
Retrieves the OutputPosition PvlKeyword for the translation group with the given name. More... | |
QString | OutputName (const QString translationGroupName) |
Retrieves a string containing the value of the OutputName keyword for the translation group with the given name. More... | |
const PvlGroup & | findTranslationGroup (const QString translationGroupName) const |
Searches for translation group with the given name. More... | |
Private Attributes | |
Pvl | m_inputLabel |
A Pvl object for the input label file. More... | |
Allows applications to translate simple text files.
This class allows the translation of text files which can be parsed by the Pvl class into Xml files.
2017-05-24 Jeannie Backer and Ian Humphrey - Original version.
2017-05-26 Ian Humphrey & Makayla Shepherd - Added createParentElements.
2017-05-26 Makayla Shepherd & Adam Paquette - Added addSiblings and setElementValue.
2017-05-30 Makayla Shepherd - Renamed p_fLabel to m_inputLabel, and updated documentation.
2017-05-31 Adam Paquette - Added addAttributes method.
2017-05-31 Ian Humphrey & Makayla Shepherd - Fixed duplicate root xml element in output xml file.
2017-06-02 Makayla Shepherd - Made setElementValue public.
2017-10-18 Jeannie Backer & Makayla Shepherd - Added convenience methods, addElement and resetElementValue, and made setElementValue static. See #5202.
2017-10-31 Jeannie Backer - Moved creation of sibling elements in doTranslation() so that this only happens if the translation is succesful.
Definition at line 66 of file PvlToXmlTranslationManager.h.
Isis::PvlToXmlTranslationManager::PvlToXmlTranslationManager | ( | const QString & | transFile | ) |
Constructs and initializes a TranslationManager object from given the Pvl translation file.
If this constructor is used, the user will need to set the input label before translating. This may be done by using SetLabel(Pvl inputLabel) or Auto(Pvl inputLabel, Pvl outputLabel).
transFile | The translation file to be used to tranlate keywords in the input label. |
Definition at line 51 of file PvlToXmlTranslationManager.cpp.
Isis::PvlToXmlTranslationManager::PvlToXmlTranslationManager | ( | Pvl & | inputLabel, |
const QString & | transFile | ||
) |
Constructs and initializes a TranslationManager object.
inputLabel | The Pvl holding the input label. |
transFile | The translation file to be used to tranlate keywords in the input label. |
Definition at line 64 of file PvlToXmlTranslationManager.cpp.
References m_inputLabel.
|
virtual |
Destroys the TranslationManager object.
Definition at line 72 of file PvlToXmlTranslationManager.cpp.
|
protected |
Take in the outputAttributes PvlKeyword and add each attribute to the appropriate element given as an argument.
outputAttributes | The PvlKeyword that holds the list of siblings |
element | QDomElement to be modified |
IException::Programmer | "Malformed output attribute [" + outputAttributes[i] + ]." |
Definition at line 486 of file PvlToXmlTranslationManager.cpp.
References _FILEINFO_, Isis::LabelTranslationManager::parseSpecification(), Isis::IException::Programmer, and Isis::PvlKeyword::size().
Referenced by doTranslation().
|
static |
Add a QDomElement to the given parent with the indicated value and units.
parent | The parent QDomElement of the new element. |
name | The name of the new element. |
value | The value of the new element. |
units | A string containing the unit specification for the new element. |
Definition at line 513 of file PvlToXmlTranslationManager.cpp.
References setElementValue().
|
protected |
Take in outputSiblings PvlKeyword and turn each sibling into its corresponding QDomElement.
Then add the QDomElement to the parent as a child.
outputSiblings | The PvlKeyword that holds the list of siblings |
parent | The parent QDomElement |
IException::Programmer | "Malformed OutputSibling [" + outputSiblings[i] + "]" |
Definition at line 453 of file PvlToXmlTranslationManager.cpp.
References _FILEINFO_, Isis::LabelTranslationManager::parseSpecification(), Isis::IException::Programmer, setElementValue(), and Isis::PvlKeyword::size().
Referenced by doTranslation().
|
inherited |
Adds the contents of a translation table to the searchable groups/keys Also performs a verification, to ensure that the translation table is valid.
transStm | The stream to be added. |
IException::User | - "Unable to find InputKey for group in translation file." |
IException::User | - "Keyword is not valid. Error in file." |
IException::User | - "Keyword does not have correct number of elements. Error in file." |
Definition at line 118 of file PvlTranslationTable.cpp.
References _FILEINFO_, Isis::PvlContainer::hasKeyword(), Isis::PvlContainer::keywords(), Isis::PvlContainer::name(), Isis::PvlKeyword::name(), and Isis::PvlKeyword::size().
Referenced by Isis::LabelTranslationManager::LabelTranslationManager(), and Isis::XmlToPvlTranslationManager::XmlToPvlTranslationManager().
|
inherited |
Adds the contents of a translation table to the searchable groups/keys.
transFile | The name of the translation file to be added. |
Definition at line 100 of file PvlTranslationTable.cpp.
References Isis::Pvl::read().
|
virtualinherited |
Automatically translate all the output names tagged as Auto in the translation table If a output name does not translate an error will be thrown by one of the support members.
The results of the translations will be stored in the outputLabel PVL based on the OutputPosition keywords in the translation table.
outputLabel | The PVL to add the translated keywords to. |
Reimplemented in Isis::PvlToPvlTranslationManager.
Definition at line 85 of file LabelTranslationManager.cpp.
References Isis::LabelTranslationManager::CreateContainer(), Isis::LabelTranslationManager::DoTranslation(), Isis::PvlObject::group(), Isis::PvlObject::groups(), Isis::PvlTranslationTable::IsAuto(), Isis::PvlTranslationTable::IsOptional(), Isis::PvlContainer::name(), and Isis::PvlTranslationTable::TranslationTable().
void Isis::PvlToXmlTranslationManager::Auto | ( | QDomDocument & | outputLabel | ) |
Automatically translate all the output names found in the translation table.
If a output name does not translate an error will be thrown by one of the support members. If the output name is translated, store the translated key, value pairs in the QDomDocument.
outputLabel | A reference to the output QDomDocument label |
Definition at line 236 of file PvlToXmlTranslationManager.cpp.
References createParentElements(), doTranslation(), Isis::PvlObject::group(), Isis::PvlObject::groups(), Isis::PvlTranslationTable::IsAuto(), Isis::PvlTranslationTable::IsOptional(), Isis::PvlContainer::name(), and Isis::PvlTranslationTable::TranslationTable().
Referenced by Auto(), Isis::ProcessExportPds4::displaySettings(), Isis::ProcessExportPds4::fileAreaObservational(), Isis::ProcessExportPds4::identificationArea(), Isis::ProcessExportPds4::StandardAllMapping(), Isis::ProcessExportPds4::standardInstrument(), Isis::ProcessExportPds4::translateBandBinImage(), Isis::ProcessExportPds4::translateBandBinSpectrumBinSet(), and Isis::ProcessExportPds4::translateBandBinSpectrumUniform().
void Isis::PvlToXmlTranslationManager::Auto | ( | Pvl & | inputLabel, |
QDomDocument & | outputLabel | ||
) |
Set the inputLabel and automatically translate all the output names found in the translation table.
If a output name does not translate an error will be thrown by one of the support members. If the output name is translated, store the translated key, value pairs in the QDomDocument.
inputLabel | The input Pvl label |
outputLabel | The output QDomDocument label |
Definition at line 222 of file PvlToXmlTranslationManager.cpp.
References Auto(), and m_inputLabel.
|
protectedvirtualinherited |
Creates all parent PVL containers for an output keyword.
If any parent containers already exist then they will not be recreated.
translationGroupName | The name of the output keyword. The OutputPosition keyword in the translation group for translationGroupName will be used to determine which containers are made. |
pvl | The PVL file to create the containers in. |
Reimplemented in Isis::PvlToPvlTranslationManager.
Definition at line 115 of file LabelTranslationManager.cpp.
References Isis::PvlObject::addGroup(), Isis::PvlObject::addObject(), Isis::PvlObject::findGroup(), Isis::PvlObject::findObject(), Isis::PvlObject::hasGroup(), Isis::PvlObject::hasObject(), Isis::PvlTranslationTable::OutputPosition(), and Isis::PvlKeyword::size().
Referenced by Isis::LabelTranslationManager::Auto(), and Isis::PvlToPvlTranslationManager::CreateContainer().
|
protected |
Read the OutputPosition for the translation group name passed and create any parent elements specified by OutputPosition to prepare for translation.
const | QString translationGroupName Name of the translation group we will grab OutputPosition from. |
QDomElement | &xmlRootElement The XML document root element to add to. |
Definition at line 393 of file PvlToXmlTranslationManager.cpp.
References Isis::PvlTranslationTable::OutputPosition(), Isis::LabelTranslationManager::parseSpecification(), and Isis::PvlKeyword::size().
Referenced by Auto().
|
protectedvirtualinherited |
Translate the requested output name to output values using the input name and values or default value.
outputName | The output name used to identify the input keyword to be translated. |
output units
Reimplemented in Isis::PvlToPvlTranslationManager.
Definition at line 159 of file LabelTranslationManager.cpp.
Referenced by Isis::LabelTranslationManager::Auto().
|
protected |
Translate the requested output name to output values using the input name and values or default value.
transGroupName | The output name used to identify the input keyword to be translated. |
parentElement | The element that is the parent of the new QDomElement, if a new element is created. If a new element is not created, then parentElement will have an attribute added to it. |
Definition at line 148 of file PvlToXmlTranslationManager.cpp.
References addAttributes(), addSiblings(), Isis::PvlContainer::findKeyword(), GetContainer(), Isis::PvlContainer::hasKeyword(), Isis::PvlTranslationTable::InputGroup(), Isis::PvlTranslationTable::InputKeywordName(), Isis::PvlContainer::name(), Isis::PvlKeyword::name(), Isis::PvlTranslationTable::OutputName(), Isis::LabelTranslationManager::parseSpecification(), setElementValue(), Isis::PvlTranslationTable::Translate(), and Isis::PvlKeyword::unit().
Referenced by Auto().
|
protectedinherited |
Searches for translation group with the given name.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
IException::Programmer | - "Unable to find translation group in file." |
Definition at line 554 of file PvlTranslationTable.cpp.
References _FILEINFO_, and Isis::PvlContainer::fileName().
|
protectedvirtual |
Return a container from the input label with the path given by the "InputPosition" keyword of the translation table.
inputGroup | The InputPosition keyword |
Definition at line 345 of file PvlToXmlTranslationManager.cpp.
References Isis::PvlObject::findGroup(), Isis::PvlObject::findObject(), Isis::PvlObject::hasGroup(), Isis::PvlObject::hasObject(), m_inputLabel, Isis::PvlKeyword::size(), and Isis::PvlKeyword::stringEqual().
Referenced by doTranslation(), InputHasKeyword(), InputKeyword(), and Translate().
|
protectedinherited |
Determines whether the given group has a default input value.
This method returns true if the translation group contains a PvlKeyword with the name "InputDefault". Note: no value needs to be assigned to this keyword.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
Definition at line 423 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by Isis::XmlToPvlTranslationManager::Translate().
|
inherited |
Returns the input default value from the translation table corresponding to the output name argument.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
Definition at line 398 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by Isis::XmlToPvlTranslationManager::Translate().
|
virtualinherited |
Returns the input group name from the translation table corresponding to the output name argument.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
inst | The occurence number of the "InputGroup" keyword (first one is zero) |
IException::Programmer | - "Keyword [InputPosition] cannot have a comma [,] in the value." |
Definition at line 301 of file PvlTranslationTable.cpp.
References _FILEINFO_, Isis::PvlContainer::begin(), Isis::PvlContainer::end(), Isis::PvlContainer::findKeyword(), and Isis::PvlKeyword::size().
Referenced by doTranslation(), Isis::PvlToPvlTranslationManager::DoTranslation(), InputHasKeyword(), Isis::PvlToPvlTranslationManager::InputHasKeyword(), InputKeyword(), Isis::PvlToPvlTranslationManager::InputKeyword(), Translate(), and Isis::PvlToPvlTranslationManager::Translate().
|
virtual |
Indicates if the input keyword corresponding to the output name exists in the label.
transGroupName | The output name used to identify the input keyword. |
Definition at line 319 of file PvlToXmlTranslationManager.cpp.
References GetContainer(), Isis::PvlContainer::hasKeyword(), Isis::PvlTranslationTable::InputGroup(), and Isis::PvlTranslationTable::InputKeywordName().
|
virtual |
Uses the translation file group name to find the input label's PvlKeyword that corresponds to the InputKey value of the translation table and returns it, if found.
transGroupName | The name of the translation group for this InputKey. |
IException::Programmer |
Definition at line 269 of file PvlToXmlTranslationManager.cpp.
References _FILEINFO_, Isis::PvlContainer::fileName(), Isis::PvlContainer::findKeyword(), GetContainer(), Isis::PvlContainer::hasKeyword(), Isis::PvlTranslationTable::InputGroup(), Isis::PvlTranslationTable::InputKeywordName(), Isis::PvlKeyword::name(), Isis::IException::Programmer, Isis::PvlKeyword::size(), and Isis::PvlTranslationTable::TranslationTable().
|
virtualinherited |
Returns the input keyword name from the translation table corresponding to the output name argument.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
IException::Programmer |
Definition at line 376 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by doTranslation(), InputHasKeyword(), Isis::PvlToPvlTranslationManager::InputHasKeyword(), InputKeyword(), Isis::PvlToPvlTranslationManager::InputKeyword(), Translate(), and Isis::PvlToPvlTranslationManager::Translate().
|
protectedinherited |
Determines whether the given group should be automatically translated.
This method returns true if the translation group contains a PvlKeyword with the name "Auto". Note: no value is assigned to this keyword.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
Definition at line 448 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by Isis::LabelTranslationManager::Auto(), Auto(), and Isis::PvlToPvlTranslationManager::Auto().
|
protectedinherited |
Determines whether the translation group is optional.
This method returns true if the translation group contains a PvlKeyword with the name "Optional". Note: no value is assigned to this keyword.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
Definition at line 473 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by Isis::LabelTranslationManager::Auto(), Auto(), and Isis::PvlToPvlTranslationManager::Auto().
|
protectedinherited |
Retrieves a string containing the value of the OutputName keyword for the translation group with the given name.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
Definition at line 527 of file PvlTranslationTable.cpp.
References Isis::PvlContainer::hasKeyword().
Referenced by doTranslation(), and Isis::PvlToPvlTranslationManager::DoTranslation().
|
protectedinherited |
Retrieves the OutputPosition PvlKeyword for the translation group with the given name.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
IException::Programmer | - "Unable to find translation keyword [OutputPostion] in translation group in file." |
Definition at line 499 of file PvlTranslationTable.cpp.
References _FILEINFO_, and Isis::PvlContainer::hasKeyword().
Referenced by Isis::LabelTranslationManager::CreateContainer(), and createParentElements().
|
virtualinherited |
Parses and validates a dependency specification.
specification | The dependency specification string. |
IException::Programmer | "Malformed dependency specification." |
IException::Programmer | "Specification does not have two components separated by [@], the type of dependency and the name-value pair. |
IException::Programmer | "Dependency type specification is invalid. Valid types are [att] and [tag]" |
IException::Programmer | "Name-value specification does not have two components separated by [|]." |
Definition at line 187 of file LabelTranslationManager.cpp.
References _FILEINFO_, and Isis::IException::Programmer.
Referenced by addAttributes(), addSiblings(), Isis::XmlToPvlTranslationManager::checkDependencies(), createParentElements(), and doTranslation().
|
static |
Reset the QDomElement's value, and units, if units != "".
element | The QDomElement whose value needs to be reset. |
value | The value to set. |
units | A string containing the unit specification. |
Definition at line 551 of file PvlToXmlTranslationManager.cpp.
|
static |
Set the QDomElement's value, and units, if units != "".
element | The QDomElement whose value needs to be set. |
value | The value to set. |
units | A string containing the unit specification. |
Definition at line 531 of file PvlToXmlTranslationManager.cpp.
Referenced by addElement(), addSiblings(), and doTranslation().
void Isis::PvlToXmlTranslationManager::SetLabel | ( | Pvl & | inputLabel | ) |
Internalizes a Pvl formatted label for translation.
inputLabel | The Pvl formatted label to be translated. |
Definition at line 81 of file PvlToXmlTranslationManager.cpp.
References m_inputLabel.
|
virtual |
Returns a translated value.
The output name is used to find the input group, keyword, default and tranlations in the translation table. If the keyword does not exist in the input label, the input default if available will be used as the input value. This input value is then used to search all of the translations. If a match is found the translated value is returned.
transGroupName | The output name used to identify the input keyword to be translated. |
findex | The index into the input keyword array. Defaults to 0 |
Implements Isis::LabelTranslationManager.
Definition at line 119 of file PvlToXmlTranslationManager.cpp.
References GetContainer(), Isis::PvlContainer::hasKeyword(), Isis::PvlTranslationTable::InputGroup(), Isis::PvlTranslationTable::InputKeywordName(), and Isis::PvlTranslationTable::Translate().
|
inherited |
Translates a single output value from the given translation group name and input value.
translationGroupName | The name of the PVL translation group used to identify the input/output keywords to be translated. Often, this is the same as the output keyword name. |
inputKeyValue | The value to be translated, from the input keyword. |
IException::Programmer | - "No value or default value to translate for translation group." |
IException::Programmer | - "Unable to find translation value in file." |
Definition at line 232 of file PvlTranslationTable.cpp.
References _FILEINFO_, Isis::PvlContainer::begin(), Isis::PvlContainer::end(), Isis::PvlContainer::fileName(), Isis::PvlContainer::findKeyword(), and Isis::PvlContainer::hasKeyword().
Referenced by doTranslation(), Isis::PvlToPvlTranslationManager::DoTranslation(), Translate(), Isis::PvlToPvlTranslationManager::Translate(), and Isis::XmlToPvlTranslationManager::Translate().
|
protectedinherited |
Protected accessor for pvl translation table passed into class.
This method returns a reference to the translation table member.
Definition at line 78 of file PvlTranslationTable.cpp.
Referenced by Isis::LabelTranslationManager::Auto(), Auto(), Isis::PvlToPvlTranslationManager::Auto(), Isis::PvlToPvlTranslationManager::DoTranslation(), InputKeyword(), Isis::PvlToPvlTranslationManager::InputKeyword(), and Isis::XmlToPvlTranslationManager::Translate().
|
protectedinherited |
Protected accessor for const pvl translation table passed into class.
This method returns a const reference to the translation table member.
Definition at line 90 of file PvlTranslationTable.cpp.
|
protectedvirtual |
Returns a vector of valid keyword names and their sizes.
A size of -1 indicates that the keyword can be any size.
Reimplemented from Isis::PvlTranslationTable.
Definition at line 94 of file PvlToXmlTranslationManager.cpp.
References validKeywords(), and Isis::PvlTranslationTable::validKeywords().
Referenced by validKeywords().
|
private |
A Pvl object for the input label file.
Definition at line 107 of file PvlToXmlTranslationManager.h.
Referenced by Auto(), GetContainer(), PvlToXmlTranslationManager(), and SetLabel().