Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revamp native code #291

Merged
merged 18 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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 @@ -6,7 +6,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