DBA Data[Home] [Help]

MDSYS.SDO_NET dependencies on SDO_NET_FEAT_ELEM

Line 1243: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY DEFAULT NULL,

1239: -- Adds a feature to the input feature layer.
1240: PROCEDURE ADD_FEATURE(
1241: feature_layer_id IN NUMBER,
1242: feature_id IN NUMBER,
1243: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY DEFAULT NULL,
1244: child_feature_ids IN SDO_NET_LAYER_FEAT_ARRAY DEFAULT NULL,
1245: check_integrity IN BOOLEAN DEFAULT TRUE);
1246:
1247: -- Adds a feature element to the input feature.

Line 1253: feature_element IN SDO_NET_FEAT_ELEM,

1249: -- existing feature elements in the feature.
1250: PROCEDURE ADD_FEATURE_ELEMENT(
1251: feature_layer_id IN NUMBER,
1252: feature_id IN NUMBER,
1253: feature_element IN SDO_NET_FEAT_ELEM,
1254: sequence_number IN NUMBER DEFAULT NULL,
1255: check_integrity IN BOOLEAN DEFAULT TRUE);
1256:
1257: -- Adds an array of feature elements to a feature.

Line 1263: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY,

1259: -- existing feature elements in the feature.
1260: PROCEDURE ADD_FEATURE_ELEMENTS(
1261: feature_layer_id IN NUMBER,
1262: feature_id IN NUMBER,
1263: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY,
1264: check_integrity IN BOOLEAN DEFAULT TRUE);
1265:
1266: -- Adds a child feature. This precedure assumes that the child feature
1267: -- already exists.

Line 1288: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY,

1284: -- Deletes the input feature elements from the feature.
1285: PROCEDURE DELETE_FEATURE_ELEMENTS(
1286: feature_layer_id IN NUMBER,
1287: feature_id IN NUMBER,
1288: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY,
1289: delete_net_elems IN BOOLEAN DEFAULT FALSE);
1290:
1291: -- Deletes the feature elements at the given sequence numbers.
1292: PROCEDURE DELETE_FEATURE_ELEMENTS_AT(

Line 1407: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY DEFAULT NULL,

1403: -- relationship with the existing child features are removed.
1404: PROCEDURE UPDATE_FEATURE(
1405: feature_layer_id IN NUMBER,
1406: feature_id IN NUMBER,
1407: feature_elements IN SDO_NET_FEAT_ELEM_ARRAY DEFAULT NULL,
1408: child_feature_ids IN SDO_NET_LAYER_FEAT_ARRAY DEFAULT NULL,
1409: check_integrity IN BOOLEAN DEFAULT TRUE);
1410:
1411: -- Updates the feature element at the given sequence number.

Line 1416: feature_element IN SDO_NET_FEAT_ELEM,

1412: PROCEDURE UPDATE_FEATURE_ELEMENT(
1413: feature_layer_id IN NUMBER,
1414: feature_id IN NUMBER,
1415: sequence_number IN NUMBER,
1416: feature_element IN SDO_NET_FEAT_ELEM,
1417: check_integrity IN BOOLEAN DEFAULT TRUE);
1418:
1419: -- Returns the feature elements in the given feature.
1420: FUNCTION GET_FEATURE_ELEMENTS(

Line 1423: RETURN SDO_NET_FEAT_ELEM_ARRAY;

1419: -- Returns the feature elements in the given feature.
1420: FUNCTION GET_FEATURE_ELEMENTS(
1421: feature_layer_id IN NUMBER,
1422: feature_id IN NUMBER)
1423: RETURN SDO_NET_FEAT_ELEM_ARRAY;
1424:
1425: ----------------------------
1426: -- END Feature Modeling --
1427: ----------------------------