idx
int64
0
41.2k
question
stringlengths
74
4.21k
target
stringlengths
5
888
37,400
public VarDef addValue ( VarValueDef value ) { assert value != null ; if ( findValue ( value . getName ( ) ) >= 0 ) { throw new IllegalStateException ( "Value=" + value . getName ( ) + " already defined for variable=" + getPathName ( ) ) ; } values_ . add ( value ) ; return this ; }
Adds a value definition for this variable .
37,401
public VarDef removeValue ( Object name ) { int i = findValue ( name ) ; if ( i >= 0 ) { values_ . remove ( i ) ; } return this ; }
Removes a value definition from this variable .
37,402
public VarValueDef getValue ( Object name ) { int i = findValue ( name ) ; return i >= 0 ? values_ . get ( i ) : null ; }
Returns the value definition with the given name .
37,403
public boolean isApplicable ( VarValueDef value ) { return value . isNA ( ) ? isOptional ( ) : getValue ( value . getName ( ) ) != null ; }
Returns true if the given value can be bound to this variable .
37,404
protected int findValue ( Object name ) { int valueCount = values_ . size ( ) ; int i ; for ( i = 0 ; i < valueCount && ! Objects . equals ( name , values_ . get ( i ) . getName ( ) ) ; i ++ ) ; return i < valueCount ? i : - 1 ; }
Returns the index of the value definition with the given name .
37,405
public boolean satisfied ( PropertySet propertySet ) { boolean isSatisfied ; Iterator < String > properties ; for ( properties = getProperties ( ) , isSatisfied = ! properties . hasNext ( ) ; ! isSatisfied && properties . hasNext ( ) ; isSatisfied = propertySet . contains ( properties . next ( ) ) ) ; return isSatisfied ; }
Returns true if this condition is satisfied by the given test case contains .
37,406
public static Stream < String > propertiesReferenced ( ICondition condition ) { if ( condition == null ) { return Stream . empty ( ) ; } PropertyVisitor propertyVisitor = new PropertyVisitor ( ) ; condition . accept ( propertyVisitor ) ; return propertyVisitor . propertiesVisited ( ) ; }
Returns the properties referenced by the given condition .
37,407
public PropertySet remove ( String property ) { String candidate = StringUtils . trimToNull ( property ) ; if ( candidate != null ) { properties_ . remove ( candidate , 1 ) ; } return this ; }
Removes a property from this set .
37,408
public ITestCaseGenerator getGenerator ( String functionName ) { ITestCaseGenerator generator = generators_ . get ( getFunctionKey ( functionName ) ) ; return generator == null ? generators_ . get ( ALL ) : generator ; }
Returns the test case generator for the given system function .
37,409
public String [ ] getGeneratorFunctions ( ) { String [ ] functions = new String [ generators_ . size ( ) ] ; generators_ . keySet ( ) . toArray ( functions ) ; return functions ; }
Returns the set of system function names associated with generators in this set .
37,410
public void addGenerator ( String functionName , ITestCaseGenerator generator ) { String functionKey = getFunctionKey ( functionName ) ; if ( generators_ . containsKey ( functionKey ) ) { throw new IllegalArgumentException ( "Generator already defined for function=" + functionName ) ; } if ( generator != null ) { generators_ . put ( functionKey , generator ) ; } }
Adds a new test case generator for the given system function .
37,411
public void setGenerator ( String functionName , ITestCaseGenerator generator ) { String functionKey = getFunctionKey ( functionName ) ; if ( generator == null ) { generators_ . remove ( functionKey ) ; } else { generators_ . put ( functionKey , generator ) ; } }
Changes the test case generator for the given system function .
37,412
public static GeneratorSet basicGenerator ( ) { GeneratorSet genSet = new GeneratorSet ( ) ; genSet . addGenerator ( GeneratorSet . ALL , new TupleGenerator ( ) ) ; return genSet ; }
Returns a GeneratorSet that uses the default TupleGenerator for all functions .
37,413
private String getFunctionKey ( String functionName ) { functionName = StringUtils . trimToNull ( functionName ) ; return functionName == null ? ALL : functionName ; }
Returns the key used to find the test case generator for the given system function .
37,414
public SystemInputDef getSystemInput ( ) { if ( systemInputDef_ == null && systemInputRef_ != null ) { try ( SystemInputResource resource = SystemInputResource . at ( urlFor ( systemInputRef_ ) ) ) { systemInputDef_ = resource . getSystemInputDef ( ) ; } catch ( Exception e ) { throw new SystemInputException ( String . format ( "Can't read resource at %s" , systemInputRef_ ) , e ) ; } } return systemInputDef_ ; }
Returns the system input definition for this project .
37,415
public IGeneratorSet getGenerators ( ) { if ( generatorSet_ == null && generatorSetRef_ != null ) { try ( GeneratorSetResource resource = GeneratorSetResource . at ( urlFor ( generatorSetRef_ ) ) ) { generatorSet_ = resource . getGeneratorSet ( ) ; } catch ( Exception e ) { throw new GeneratorSetException ( String . format ( "Can't read resource at %s" , generatorSetRef_ ) , e ) ; } } return generatorSet_ ; }
Returns the generator set for this project .
37,416
public URL urlFor ( URI location ) throws MalformedURLException { URI uri = getBaseLocation ( ) == null ? location : getBaseLocation ( ) . resolve ( location ) ; return uri . toURL ( ) ; }
Returns the full URL for the project element at the given location .
37,417
private void updatePrincipal ( ) { principal = new JsonObject ( ) ; profiles . forEach ( ( name , profile ) -> { final JsonObject jsonProfile = new JsonObject ( ) ; profile . getAttributes ( ) . forEach ( ( attributeName , attributeValue ) -> jsonProfile . put ( attributeName , attributeValue . toString ( ) ) ) ; principal . put ( name , jsonProfile ) ; } ) ; }
Update the principal to be called on any modification of the profiles map internally .
37,418
public void handle ( final RoutingContext routingContext ) { final VertxWebContext webContext = new VertxWebContext ( routingContext , sessionStore ) ; final Pac4jUser pac4jUser = ( Pac4jUser ) routingContext . user ( ) ; if ( pac4jUser != null ) { final Map < String , CommonProfile > indirectProfiles = pac4jUser . pac4jUserProfiles ( ) . entrySet ( ) . stream ( ) . filter ( e -> { final String clientName = e . getValue ( ) . getClientName ( ) ; return ( config . getClients ( ) . findClient ( clientName ) instanceof IndirectClient ) ; } ) . collect ( toMap ( e -> e . getKey ( ) , e -> e . getValue ( ) ) ) ; if ( ! indirectProfiles . isEmpty ( ) ) { pac4jUser . pac4jUserProfiles ( ) . clear ( ) ; pac4jUser . pac4jUserProfiles ( ) . putAll ( indirectProfiles ) ; } else { routingContext . clearUser ( ) ; } } vertx . executeBlocking ( future -> securityLogic . perform ( webContext , config , ( ctx , profiles , parameters ) -> { future . complete ( ) ; return null ; } , httpActionAdapter , clientNames , authorizerName , matcherName , multiProfile ) , asyncResult -> { if ( asyncResult . failed ( ) ) { unexpectedFailure ( routingContext , asyncResult . cause ( ) ) ; } else { LOG . info ( "Authorised to view resource " + routingContext . request ( ) . path ( ) ) ; routingContext . next ( ) ; } } ) ; }
Port of Pac4J auth to a handler in vert . x 3 .
37,419
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfClosureSurface ( ) { if ( _GenericApplicationPropertyOfClosureSurface == null ) { _GenericApplicationPropertyOfClosureSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfClosureSurface ; }
Gets the value of the genericApplicationPropertyOfClosureSurface property .
37,420
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBridgeRoom ( ) { if ( _GenericApplicationPropertyOfBridgeRoom == null ) { _GenericApplicationPropertyOfBridgeRoom = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBridgeRoom ; }
Gets the value of the genericApplicationPropertyOfBridgeRoom property .
37,421
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfAuxiliaryTrafficArea ( ) { if ( _GenericApplicationPropertyOfAuxiliaryTrafficArea == null ) { _GenericApplicationPropertyOfAuxiliaryTrafficArea = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfAuxiliaryTrafficArea ; }
Gets the value of the genericApplicationPropertyOfAuxiliaryTrafficArea property .
37,422
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTunnelInstallation ( ) { if ( _GenericApplicationPropertyOfTunnelInstallation == null ) { _GenericApplicationPropertyOfTunnelInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTunnelInstallation ; }
Gets the value of the genericApplicationPropertyOfTunnelInstallation property .
37,423
public List < JAXBElement < ? extends AbstractCurveSegmentType > > get_CurveSegment ( ) { if ( _CurveSegment == null ) { _CurveSegment = new ArrayList < JAXBElement < ? extends AbstractCurveSegmentType > > ( ) ; } return this . _CurveSegment ; }
Gets the value of the curveSegment property .
37,424
public List < JAXBElement < ? extends AbstractTopoPrimitiveType > > get_TopoPrimitive ( ) { if ( _TopoPrimitive == null ) { _TopoPrimitive = new ArrayList < JAXBElement < ? extends AbstractTopoPrimitiveType > > ( ) ; } return this . _TopoPrimitive ; }
Gets the value of the topoPrimitive property .
37,425
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfSolitaryVegetationObject ( ) { if ( _GenericApplicationPropertyOfSolitaryVegetationObject == null ) { _GenericApplicationPropertyOfSolitaryVegetationObject = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfSolitaryVegetationObject ; }
Gets the value of the genericApplicationPropertyOfSolitaryVegetationObject property .
37,426
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfIntBridgeInstallation ( ) { if ( _GenericApplicationPropertyOfIntBridgeInstallation == null ) { _GenericApplicationPropertyOfIntBridgeInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfIntBridgeInstallation ; }
Gets the value of the genericApplicationPropertyOfIntBridgeInstallation property .
37,427
public List < JAXBElement < CodeType > > getName ( ) { if ( name == null ) { name = new ArrayList < JAXBElement < CodeType > > ( ) ; } return this . name ; }
Multiple names may be provided . These will often be distinguished by being assigned by different authorities as indicated by the value of the codeSpace attribute . In an instance document there will usually only be one name per authority . Gets the value of the name property .
37,428
public List < JAXBElement < ? extends AbstractSurfaceType > > get_Surface ( ) { if ( _Surface == null ) { _Surface = new ArrayList < JAXBElement < ? extends AbstractSurfaceType > > ( ) ; } return this . _Surface ; }
Gets the value of the surface property .
37,429
public List < JAXBElement < ? extends AbstractGeometryType > > get_Geometry ( ) { if ( _Geometry == null ) { _Geometry = new ArrayList < JAXBElement < ? extends AbstractGeometryType > > ( ) ; } return this . _Geometry ; }
Gets the value of the geometry property .
37,430
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfAddress ( ) { if ( _GenericApplicationPropertyOfAddress == null ) { _GenericApplicationPropertyOfAddress = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfAddress ; }
Gets the value of the genericApplicationPropertyOfAddress property .
37,431
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBuildingPart ( ) { if ( _GenericApplicationPropertyOfBuildingPart == null ) { _GenericApplicationPropertyOfBuildingPart = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBuildingPart ; }
Gets the value of the genericApplicationPropertyOfBuildingPart property .
37,432
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfRoofSurface ( ) { if ( _GenericApplicationPropertyOfRoofSurface == null ) { _GenericApplicationPropertyOfRoofSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfRoofSurface ; }
Gets the value of the genericApplicationPropertyOfRoofSurface property .
37,433
public List < PremiseElement . PremiseName > getPremiseName ( ) { if ( premiseName == null ) { premiseName = new ArrayList < PremiseElement . PremiseName > ( ) ; } return this . premiseName ; }
Gets the value of the premiseName property .
37,434
public List < LocalityElement . LocalityName > getLocalityName ( ) { if ( localityName == null ) { localityName = new ArrayList < LocalityElement . LocalityName > ( ) ; } return this . localityName ; }
Gets the value of the localityName property .
37,435
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBridge ( ) { if ( _GenericApplicationPropertyOfBridge == null ) { _GenericApplicationPropertyOfBridge = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBridge ; }
Gets the value of the genericApplicationPropertyOfBridge property .
37,436
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBuilding ( ) { if ( _GenericApplicationPropertyOfBuilding == null ) { _GenericApplicationPropertyOfBuilding = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBuilding ; }
Gets the value of the genericApplicationPropertyOfBuilding property .
37,437
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfRoad ( ) { if ( _GenericApplicationPropertyOfRoad == null ) { _GenericApplicationPropertyOfRoad = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfRoad ; }
Gets the value of the genericApplicationPropertyOfRoad property .
37,438
public List < JAXBElement < ? extends AbstractGenericAttributeType > > get_GenericAttribute ( ) { if ( _GenericAttribute == null ) { _GenericAttribute = new ArrayList < JAXBElement < ? extends AbstractGenericAttributeType > > ( ) ; } return this . _GenericAttribute ; }
Gets the value of the genericAttribute property .
37,439
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfCityObject ( ) { if ( _GenericApplicationPropertyOfCityObject == null ) { _GenericApplicationPropertyOfCityObject = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfCityObject ; }
Gets the value of the genericApplicationPropertyOfCityObject property .
37,440
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfWaterGroundSurface ( ) { if ( _GenericApplicationPropertyOfWaterGroundSurface == null ) { _GenericApplicationPropertyOfWaterGroundSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfWaterGroundSurface ; }
Gets the value of the genericApplicationPropertyOfWaterGroundSurface property .
37,441
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTexCoordGen ( ) { if ( _GenericApplicationPropertyOfTexCoordGen == null ) { _GenericApplicationPropertyOfTexCoordGen = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTexCoordGen ; }
Gets the value of the genericApplicationPropertyOfTexCoordGen property .
37,442
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfInteriorWallSurface ( ) { if ( _GenericApplicationPropertyOfInteriorWallSurface == null ) { _GenericApplicationPropertyOfInteriorWallSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfInteriorWallSurface ; }
Gets the value of the genericApplicationPropertyOfInteriorWallSurface property .
37,443
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfReliefFeature ( ) { if ( _GenericApplicationPropertyOfReliefFeature == null ) { _GenericApplicationPropertyOfReliefFeature = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfReliefFeature ; }
Gets the value of the genericApplicationPropertyOfReliefFeature property .
37,444
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfVegetationObject ( ) { if ( _GenericApplicationPropertyOfVegetationObject == null ) { _GenericApplicationPropertyOfVegetationObject = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfVegetationObject ; }
Gets the value of the genericApplicationPropertyOfVegetationObject property .
37,445
private static boolean isWindowsAbsolutePath ( String systemId ) { if ( ! isAbsolutePath ( systemId ) ) return false ; if ( systemId . length ( ) > 2 && systemId . charAt ( 1 ) == ':' && Character . isLetter ( systemId . charAt ( 0 ) ) && ( systemId . charAt ( 2 ) == '\\' || systemId . charAt ( 2 ) == '/' ) ) return true ; else return false ; }
Return true if the local path is a Windows absolute path .
37,446
public List < PostOfficeElement . PostOfficeName > getPostOfficeName ( ) { if ( postOfficeName == null ) { postOfficeName = new ArrayList < PostOfficeElement . PostOfficeName > ( ) ; } return this . postOfficeName ; }
Gets the value of the postOfficeName property .
37,447
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfAbstractBuilding ( ) { if ( _GenericApplicationPropertyOfAbstractBuilding == null ) { _GenericApplicationPropertyOfAbstractBuilding = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfAbstractBuilding ; }
Gets the value of the genericApplicationPropertyOfAbstractBuilding property .
37,448
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfAbstractBridge ( ) { if ( _GenericApplicationPropertyOfAbstractBridge == null ) { _GenericApplicationPropertyOfAbstractBridge = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfAbstractBridge ; }
Gets the value of the genericApplicationPropertyOfAbstractBridge property .
37,449
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTransportationObject ( ) { if ( _GenericApplicationPropertyOfTransportationObject == null ) { _GenericApplicationPropertyOfTransportationObject = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTransportationObject ; }
Gets the value of the genericApplicationPropertyOfTransportationObject property .
37,450
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTunnelFurniture ( ) { if ( _GenericApplicationPropertyOfTunnelFurniture == null ) { _GenericApplicationPropertyOfTunnelFurniture = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTunnelFurniture ; }
Gets the value of the genericApplicationPropertyOfTunnelFurniture property .
37,451
public List < PostalRouteType . PostalRouteName > getPostalRouteName ( ) { if ( postalRouteName == null ) { postalRouteName = new ArrayList < PostalRouteType . PostalRouteName > ( ) ; } return this . postalRouteName ; }
Gets the value of the postalRouteName property .
37,452
public List < JAXBElement < ? extends AbstractFeatureType > > get_Feature ( ) { if ( _Feature == null ) { _Feature = new ArrayList < JAXBElement < ? extends AbstractFeatureType > > ( ) ; } return this . _Feature ; }
Gets the value of the feature property .
37,453
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfGroundSurface ( ) { if ( _GenericApplicationPropertyOfGroundSurface == null ) { _GenericApplicationPropertyOfGroundSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfGroundSurface ; }
Gets the value of the genericApplicationPropertyOfGroundSurface property .
37,454
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfCityModel ( ) { if ( _GenericApplicationPropertyOfCityModel == null ) { _GenericApplicationPropertyOfCityModel = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfCityModel ; }
Gets the value of the genericApplicationPropertyOfCityModel property .
37,455
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfCeilingSurface ( ) { if ( _GenericApplicationPropertyOfCeilingSurface == null ) { _GenericApplicationPropertyOfCeilingSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfCeilingSurface ; }
Gets the value of the genericApplicationPropertyOfCeilingSurface property .
37,456
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfIntTunnelInstallation ( ) { if ( _GenericApplicationPropertyOfIntTunnelInstallation == null ) { _GenericApplicationPropertyOfIntTunnelInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfIntTunnelInstallation ; }
Gets the value of the genericApplicationPropertyOfIntTunnelInstallation property .
37,457
public List < TexCoordListType . TextureCoordinates > getTextureCoordinates ( ) { if ( textureCoordinates == null ) { textureCoordinates = new ArrayList < TexCoordListType . TextureCoordinates > ( ) ; } return this . textureCoordinates ; }
Gets the value of the textureCoordinates property .
37,458
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTexCoordList ( ) { if ( _GenericApplicationPropertyOfTexCoordList == null ) { _GenericApplicationPropertyOfTexCoordList = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTexCoordList ; }
Gets the value of the genericApplicationPropertyOfTexCoordList property .
37,459
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfLandUse ( ) { if ( _GenericApplicationPropertyOfLandUse == null ) { _GenericApplicationPropertyOfLandUse = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfLandUse ; }
Gets the value of the genericApplicationPropertyOfLandUse property .
37,460
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfPlantCover ( ) { if ( _GenericApplicationPropertyOfPlantCover == null ) { _GenericApplicationPropertyOfPlantCover = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfPlantCover ; }
Gets the value of the genericApplicationPropertyOfPlantCover property .
37,461
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTextureParameterization ( ) { if ( _GenericApplicationPropertyOfTextureParameterization == null ) { _GenericApplicationPropertyOfTextureParameterization = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTextureParameterization ; }
Gets the value of the genericApplicationPropertyOfTextureParameterization property .
37,462
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfWaterSurface ( ) { if ( _GenericApplicationPropertyOfWaterSurface == null ) { _GenericApplicationPropertyOfWaterSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfWaterSurface ; }
Gets the value of the genericApplicationPropertyOfWaterSurface property .
37,463
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTinRelief ( ) { if ( _GenericApplicationPropertyOfTinRelief == null ) { _GenericApplicationPropertyOfTinRelief = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTinRelief ; }
Gets the value of the genericApplicationPropertyOfTinRelief property .
37,464
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfOpening ( ) { if ( _GenericApplicationPropertyOfOpening == null ) { _GenericApplicationPropertyOfOpening = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfOpening ; }
Gets the value of the genericApplicationPropertyOfOpening property .
37,465
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfOuterCeilingSurface ( ) { if ( _GenericApplicationPropertyOfOuterCeilingSurface == null ) { _GenericApplicationPropertyOfOuterCeilingSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfOuterCeilingSurface ; }
Gets the value of the genericApplicationPropertyOfOuterCeilingSurface property .
37,466
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfCityFurniture ( ) { if ( _GenericApplicationPropertyOfCityFurniture == null ) { _GenericApplicationPropertyOfCityFurniture = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfCityFurniture ; }
Gets the value of the genericApplicationPropertyOfCityFurniture property .
37,467
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfMassPointRelief ( ) { if ( _GenericApplicationPropertyOfMassPointRelief == null ) { _GenericApplicationPropertyOfMassPointRelief = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfMassPointRelief ; }
Gets the value of the genericApplicationPropertyOfMassPointRelief property .
37,468
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTunnel ( ) { if ( _GenericApplicationPropertyOfTunnel == null ) { _GenericApplicationPropertyOfTunnel = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTunnel ; }
Gets the value of the genericApplicationPropertyOfTunnel property .
37,469
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfOuterFloorSurface ( ) { if ( _GenericApplicationPropertyOfOuterFloorSurface == null ) { _GenericApplicationPropertyOfOuterFloorSurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfOuterFloorSurface ; }
Gets the value of the genericApplicationPropertyOfOuterFloorSurface property .
37,470
public List < JAXBElement < ? extends AbstractTimeSliceType > > get_TimeSlice ( ) { if ( _TimeSlice == null ) { _TimeSlice = new ArrayList < JAXBElement < ? extends AbstractTimeSliceType > > ( ) ; } return this . _TimeSlice ; }
Gets the value of the timeSlice property .
37,471
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBreaklineRelief ( ) { if ( _GenericApplicationPropertyOfBreaklineRelief == null ) { _GenericApplicationPropertyOfBreaklineRelief = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBreaklineRelief ; }
Gets the value of the genericApplicationPropertyOfBreaklineRelief property .
37,472
public List < LargeMailUserType . LargeMailUserName > getLargeMailUserName ( ) { if ( largeMailUserName == null ) { largeMailUserName = new ArrayList < LargeMailUserType . LargeMailUserName > ( ) ; } return this . largeMailUserName ; }
Gets the value of the largeMailUserName property .
37,473
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfSite ( ) { if ( _GenericApplicationPropertyOfSite == null ) { _GenericApplicationPropertyOfSite = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfSite ; }
Gets the value of the genericApplicationPropertyOfSite property .
37,474
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTrack ( ) { if ( _GenericApplicationPropertyOfTrack == null ) { _GenericApplicationPropertyOfTrack = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTrack ; }
Gets the value of the genericApplicationPropertyOfTrack property .
37,475
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfSurfaceData ( ) { if ( _GenericApplicationPropertyOfSurfaceData == null ) { _GenericApplicationPropertyOfSurfaceData = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfSurfaceData ; }
Gets the value of the genericApplicationPropertyOfSurfaceData property .
37,476
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBridgePart ( ) { if ( _GenericApplicationPropertyOfBridgePart == null ) { _GenericApplicationPropertyOfBridgePart = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBridgePart ; }
Gets the value of the genericApplicationPropertyOfBridgePart property .
37,477
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBridgeInstallation ( ) { if ( _GenericApplicationPropertyOfBridgeInstallation == null ) { _GenericApplicationPropertyOfBridgeInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBridgeInstallation ; }
Gets the value of the genericApplicationPropertyOfBridgeInstallation property .
37,478
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBoundarySurface ( ) { if ( _GenericApplicationPropertyOfBoundarySurface == null ) { _GenericApplicationPropertyOfBoundarySurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBoundarySurface ; }
Gets the value of the genericApplicationPropertyOfBoundarySurface property .
37,479
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfBuildingInstallation ( ) { if ( _GenericApplicationPropertyOfBuildingInstallation == null ) { _GenericApplicationPropertyOfBuildingInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfBuildingInstallation ; }
Gets the value of the genericApplicationPropertyOfBuildingInstallation property .
37,480
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfDoor ( ) { if ( _GenericApplicationPropertyOfDoor == null ) { _GenericApplicationPropertyOfDoor = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfDoor ; }
Gets the value of the genericApplicationPropertyOfDoor property .
37,481
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfIntBuildingInstallation ( ) { if ( _GenericApplicationPropertyOfIntBuildingInstallation == null ) { _GenericApplicationPropertyOfIntBuildingInstallation = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfIntBuildingInstallation ; }
Gets the value of the genericApplicationPropertyOfIntBuildingInstallation property .
37,482
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfRoom ( ) { if ( _GenericApplicationPropertyOfRoom == null ) { _GenericApplicationPropertyOfRoom = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfRoom ; }
Gets the value of the genericApplicationPropertyOfRoom property .
37,483
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfRasterRelief ( ) { if ( _GenericApplicationPropertyOfRasterRelief == null ) { _GenericApplicationPropertyOfRasterRelief = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfRasterRelief ; }
Gets the value of the genericApplicationPropertyOfRasterRelief property .
37,484
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfX3DMaterial ( ) { if ( _GenericApplicationPropertyOfX3DMaterial == null ) { _GenericApplicationPropertyOfX3DMaterial = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfX3DMaterial ; }
Gets the value of the genericApplicationPropertyOfX3DMaterial property .
37,485
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfSquare ( ) { if ( _GenericApplicationPropertyOfSquare == null ) { _GenericApplicationPropertyOfSquare = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfSquare ; }
Gets the value of the genericApplicationPropertyOfSquare property .
37,486
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfGeoreferencedTexture ( ) { if ( _GenericApplicationPropertyOfGeoreferencedTexture == null ) { _GenericApplicationPropertyOfGeoreferencedTexture = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfGeoreferencedTexture ; }
Gets the value of the genericApplicationPropertyOfGeoreferencedTexture property .
37,487
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfWaterBoundarySurface ( ) { if ( _GenericApplicationPropertyOfWaterBoundarySurface == null ) { _GenericApplicationPropertyOfWaterBoundarySurface = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfWaterBoundarySurface ; }
Gets the value of the genericApplicationPropertyOfWaterBoundarySurface property .
37,488
public List < FirmType . FirmName > getFirmName ( ) { if ( firmName == null ) { firmName = new ArrayList < FirmType . FirmName > ( ) ; } return this . firmName ; }
Gets the value of the firmName property .
37,489
public List < DepartmentElement . DepartmentName > getDepartmentName ( ) { if ( departmentName == null ) { departmentName = new ArrayList < DepartmentElement . DepartmentName > ( ) ; } return this . departmentName ; }
Gets the value of the departmentName property .
37,490
public List < JAXBElement < ? extends AbstractSurfacePatchType > > get_SurfacePatch ( ) { if ( _SurfacePatch == null ) { _SurfacePatch = new ArrayList < JAXBElement < ? extends AbstractSurfacePatchType > > ( ) ; } return this . _SurfacePatch ; }
Gets the value of the surfacePatch property .
37,491
public List < JAXBElement < ? extends FeaturePropertyType > > getFeatureMember ( ) { if ( featureMember == null ) { featureMember = new ArrayList < JAXBElement < ? extends FeaturePropertyType > > ( ) ; } return this . featureMember ; }
Gets the value of the featureMember property .
37,492
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTransportationComplex ( ) { if ( _GenericApplicationPropertyOfTransportationComplex == null ) { _GenericApplicationPropertyOfTransportationComplex = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTransportationComplex ; }
Gets the value of the genericApplicationPropertyOfTransportationComplex property .
37,493
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfTrafficArea ( ) { if ( _GenericApplicationPropertyOfTrafficArea == null ) { _GenericApplicationPropertyOfTrafficArea = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfTrafficArea ; }
Gets the value of the genericApplicationPropertyOfTrafficArea property .
37,494
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfCityObjectGroup ( ) { if ( _GenericApplicationPropertyOfCityObjectGroup == null ) { _GenericApplicationPropertyOfCityObjectGroup = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfCityObjectGroup ; }
Gets the value of the genericApplicationPropertyOfCityObjectGroup property .
37,495
public List < DependentLocalityType . DependentLocalityName > getDependentLocalityName ( ) { if ( dependentLocalityName == null ) { dependentLocalityName = new ArrayList < DependentLocalityType . DependentLocalityName > ( ) ; } return this . dependentLocalityName ; }
Gets the value of the dependentLocalityName property .
37,496
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfWaterObject ( ) { if ( _GenericApplicationPropertyOfWaterObject == null ) { _GenericApplicationPropertyOfWaterObject = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfWaterObject ; }
Gets the value of the genericApplicationPropertyOfWaterObject property .
37,497
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfAppearance ( ) { if ( _GenericApplicationPropertyOfAppearance == null ) { _GenericApplicationPropertyOfAppearance = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfAppearance ; }
Gets the value of the genericApplicationPropertyOfAppearance property .
37,498
public List < JAXBElement < Object > > get_GenericApplicationPropertyOfReliefComponent ( ) { if ( _GenericApplicationPropertyOfReliefComponent == null ) { _GenericApplicationPropertyOfReliefComponent = new ArrayList < JAXBElement < Object > > ( ) ; } return this . _GenericApplicationPropertyOfReliefComponent ; }
Gets the value of the genericApplicationPropertyOfReliefComponent property .
37,499
public List < AdministrativeAreaElement . AdministrativeAreaName > getAdministrativeAreaName ( ) { if ( administrativeAreaName == null ) { administrativeAreaName = new ArrayList < AdministrativeAreaElement . AdministrativeAreaName > ( ) ; } return this . administrativeAreaName ; }
Gets the value of the administrativeAreaName property .