com.hcl.domino.jna.internal.structs.HtmlApi_UrlComponentStruct Maven / Gradle / Ivy
The newest version!
/*
* ==========================================================================
* Copyright (C) 2019-2022 HCL America, Inc. ( http://www.hcl.com/ )
* All rights reserved.
* ==========================================================================
* Licensed 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 .
*
* 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 com.hcl.domino.jna.internal.structs;
import java.security.AccessController;
import java.security.PrivilegedAction;
import com.sun.jna.Pointer;
import com.sun.jna.Union;
/**
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class HtmlApi_UrlComponentStruct extends Union {
/** C type : HTMLAPI_URLTargetComponent */
public HtmlApi_UrlTargetComponentStruct Target;
/** C type : HTMLAPI_URLArg */
public HtmlApi_UrlArgStruct Arg;
public HtmlApi_UrlComponentStruct() {
super();
}
/** @param Target C type : HTMLAPI_URLTargetComponent */
public HtmlApi_UrlComponentStruct(HtmlApi_UrlTargetComponentStruct Target) {
super();
this.Target = Target;
setType(HtmlApi_UrlTargetComponentStruct.class);
}
public static HtmlApi_UrlComponentStruct newInstance(final HtmlApi_UrlTargetComponentStruct Target) {
return AccessController.doPrivileged((PrivilegedAction) () -> new HtmlApi_UrlComponentStruct(Target));
}
/** @param Arg C type : HTMLAPI_URLArg */
public HtmlApi_UrlComponentStruct(HtmlApi_UrlArgStruct Arg) {
super();
this.Arg = Arg;
setType(HtmlApi_UrlArgStruct.class);
}
public static HtmlApi_UrlComponentStruct newInstance(final HtmlApi_UrlArgStruct Target) {
return AccessController.doPrivileged((PrivilegedAction) () -> new HtmlApi_UrlComponentStruct(Target));
}
public HtmlApi_UrlComponentStruct(Pointer peer) {
super(peer);
}
public static HtmlApi_UrlComponentStruct newInstance(final Pointer peer) {
return AccessController.doPrivileged((PrivilegedAction) () -> new HtmlApi_UrlComponentStruct(peer));
}
public static class ByReference extends HtmlApi_UrlComponentStruct implements com.sun.jna.Structure.ByReference {
};
public static class ByValue extends HtmlApi_UrlComponentStruct implements com.sun.jna.Structure.ByValue {
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy