-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from ballerina-platform/task
Revamp native code
- Loading branch information
Showing
11 changed files
with
494 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
ignore: | ||
- "xmldata-test-utils" | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
|
47 changes: 47 additions & 0 deletions
47
native/src/main/java/io/ballerina/stdlib/xmldata/AttributeManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
Oops, something went wrong.