Skip to content

Commit

Permalink
Merge pull request #291 from ballerina-platform/task
Browse files Browse the repository at this point in the history
Revamp native code
  • Loading branch information
kalaiyarasiganeshalingam authored Nov 4, 2021
2 parents d39a43c + d8cdd2f commit 3a35a9a
Show file tree
Hide file tree
Showing 11 changed files with 494 additions and 500 deletions.
4 changes: 0 additions & 4 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,3 @@ distribution = "slbeta3"

[[platform.java11.dependency]]
path = "../native/build/libs/xmldata-native-2.0.1-SNAPSHOT.jar"

[[platform.java11.dependency]]
path = "../test-utils/build/libs/xmldata-test-utils-2.0.1-SNAPSHOT.jar"
scope = "testOnly"
2 changes: 0 additions & 2 deletions ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ updateTomlFiles.dependsOn unpackJballerinaTools

build.dependsOn "generatePomFileForMavenPublication"
build.dependsOn ":${packageName}-native:build"
build.dependsOn ":${packageName}-test-utils:build"
test.dependsOn ":${packageName}-native:build"
test.dependsOn ":${packageName}-test-utils:build"

publishToMavenLocal.dependsOn build
publish.dependsOn build
514 changes: 339 additions & 175 deletions ballerina/tests/xml_to_json_test.bal

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,3 @@ distribution = "slbeta3"

[[platform.java11.dependency]]
path = "../native/build/libs/xmldata-native-@project.version@.jar"

[[platform.java11.dependency]]
path = "../test-utils/build/libs/xmldata-test-utils-@project.version@.jar"
scope = "testOnly"
3 changes: 0 additions & 3 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
ignore:
- "xmldata-test-utils"

coverage:
precision: 2
round: down
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* Copyright (c) 2021 WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package io.ballerina.stdlib.xmldata;

import java.util.LinkedHashMap;

/**
* Attribute manager handles attributes and namespaces of XML elements.
*
* @since 2.0.1
*/
public class AttributeManager {

private LinkedHashMap<String, String> attributeMap;

public AttributeManager() {
attributeMap = new LinkedHashMap<>();
}

public void initializeMap(LinkedHashMap<String, String> attributeMap) {
this.attributeMap = attributeMap;
}

public void setValue(String key, String value) {
this.attributeMap.put(key, value);
}

public LinkedHashMap<String, String> getMap() {
return this.attributeMap;
}
}
Loading

0 comments on commit 3a35a9a

Please sign in to comment.