source: node_modules/@swagger-api/apidom-ns-openapi-3-0/cjs/elements/Xml.cjs

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 904 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class Xml extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'xml';
10 }
11 get name() {
12 return this.get('name');
13 }
14 set name(name) {
15 this.set('name', name);
16 }
17 get namespace() {
18 return this.get('namespace');
19 }
20 set namespace(namespace) {
21 this.set('namespace', namespace);
22 }
23 get prefix() {
24 return this.get('prefix');
25 }
26 set prefix(prefix) {
27 this.set('prefix', prefix);
28 }
29 get attribute() {
30 return this.get('attribute');
31 }
32 set attribute(attribute) {
33 this.set('attribute', attribute);
34 }
35 get wrapped() {
36 return this.get('wrapped');
37 }
38 set wrapped(wrapped) {
39 this.set('wrapped', wrapped);
40 }
41}
42var _default = exports.default = Xml;
Note: See TracBrowser for help on using the repository browser.