index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/Histogram.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import java.util.List; /** Chrome histogram. */ @Experimental public class Histogram { private String name; private Integer sum; private Integer count; private List<Bucket> buckets; /** Name. */ public String getName() { return name; } /** Name. */ public void setName(String name) { this.name = name; } /** Sum of sample values. */ public Integer getSum() { return sum; } /** Sum of sample values. */ public void setSum(Integer sum) { this.sum = sum; } /** Total number of samples. */ public Integer getCount() { return count; } /** Total number of samples. */ public void setCount(Integer count) { this.count = count; } /** Buckets. */ public List<Bucket> getBuckets() { return buckets; } /** Buckets. */ public void setBuckets(List<Bucket> buckets) { this.buckets = buckets; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/PermissionDescriptor.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Definition of PermissionDescriptor defined in the Permissions API: * https://w3c.github.io/permissions/#dictdef-permissiondescriptor. */ @Experimental public class PermissionDescriptor { private String name; @Optional private Boolean sysex; @Optional private Boolean userVisibleOnly; @Optional private Boolean allowWithoutSanitization; @Optional private Boolean panTiltZoom; /** * Name of permission. See * https://cs.chromium.org/chromium/src/third_party/blink/renderer/modules/permissions/permission_descriptor.idl * for valid permission names. */ public String getName() { return name; } /** * Name of permission. See * https://cs.chromium.org/chromium/src/third_party/blink/renderer/modules/permissions/permission_descriptor.idl * for valid permission names. */ public void setName(String name) { this.name = name; } /** For "midi" permission, may also specify sysex control. */ public Boolean getSysex() { return sysex; } /** For "midi" permission, may also specify sysex control. */ public void setSysex(Boolean sysex) { this.sysex = sysex; } /** * For "push" permission, may specify userVisibleOnly. Note that userVisibleOnly = true is the * only currently supported type. */ public Boolean getUserVisibleOnly() { return userVisibleOnly; } /** * For "push" permission, may specify userVisibleOnly. Note that userVisibleOnly = true is the * only currently supported type. */ public void setUserVisibleOnly(Boolean userVisibleOnly) { this.userVisibleOnly = userVisibleOnly; } /** For "clipboard" permission, may specify allowWithoutSanitization. */ public Boolean getAllowWithoutSanitization() { return allowWithoutSanitization; } /** For "clipboard" permission, may specify allowWithoutSanitization. */ public void setAllowWithoutSanitization(Boolean allowWithoutSanitization) { this.allowWithoutSanitization = allowWithoutSanitization; } /** For "camera" permission, may specify panTiltZoom. */ public Boolean getPanTiltZoom() { return panTiltZoom; } /** For "camera" permission, may specify panTiltZoom. */ public void setPanTiltZoom(Boolean panTiltZoom) { this.panTiltZoom = panTiltZoom; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/PermissionSetting.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum PermissionSetting { @JsonProperty("granted") GRANTED, @JsonProperty("denied") DENIED, @JsonProperty("prompt") PROMPT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/PermissionType.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum PermissionType { @JsonProperty("accessibilityEvents") ACCESSIBILITY_EVENTS, @JsonProperty("audioCapture") AUDIO_CAPTURE, @JsonProperty("backgroundSync") BACKGROUND_SYNC, @JsonProperty("backgroundFetch") BACKGROUND_FETCH, @JsonProperty("clipboardReadWrite") CLIPBOARD_READ_WRITE, @JsonProperty("clipboardSanitizedWrite") CLIPBOARD_SANITIZED_WRITE, @JsonProperty("displayCapture") DISPLAY_CAPTURE, @JsonProperty("durableStorage") DURABLE_STORAGE, @JsonProperty("flash") FLASH, @JsonProperty("geolocation") GEOLOCATION, @JsonProperty("idleDetection") IDLE_DETECTION, @JsonProperty("localFonts") LOCAL_FONTS, @JsonProperty("midi") MIDI, @JsonProperty("midiSysex") MIDI_SYSEX, @JsonProperty("nfc") NFC, @JsonProperty("notifications") NOTIFICATIONS, @JsonProperty("paymentHandler") PAYMENT_HANDLER, @JsonProperty("periodicBackgroundSync") PERIODIC_BACKGROUND_SYNC, @JsonProperty("protectedMediaIdentifier") PROTECTED_MEDIA_IDENTIFIER, @JsonProperty("sensors") SENSORS, @JsonProperty("storageAccess") STORAGE_ACCESS, @JsonProperty("topLevelStorageAccess") TOP_LEVEL_STORAGE_ACCESS, @JsonProperty("videoCapture") VIDEO_CAPTURE, @JsonProperty("videoCapturePanTiltZoom") VIDEO_CAPTURE_PAN_TILT_ZOOM, @JsonProperty("wakeLockScreen") WAKE_LOCK_SCREEN, @JsonProperty("wakeLockSystem") WAKE_LOCK_SYSTEM, @JsonProperty("windowManagement") WINDOW_MANAGEMENT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/SetDownloadBehaviorBehavior.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Whether to allow all or deny all download requests, or use default Chrome behavior if available * (otherwise deny). |allowAndName| allows download and names files according to their dowmload * guids. */ public enum SetDownloadBehaviorBehavior { @JsonProperty("deny") DENY, @JsonProperty("allow") ALLOW, @JsonProperty("allowAndName") ALLOW_AND_NAME, @JsonProperty("default") DEFAULT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/Version.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class Version { private String protocolVersion; private String product; private String revision; private String userAgent; private String jsVersion; /** Protocol version. */ public String getProtocolVersion() { return protocolVersion; } /** Protocol version. */ public void setProtocolVersion(String protocolVersion) { this.protocolVersion = protocolVersion; } /** Product name. */ public String getProduct() { return product; } /** Product name. */ public void setProduct(String product) { this.product = product; } /** Product revision. */ public String getRevision() { return revision; } /** Product revision. */ public void setRevision(String revision) { this.revision = revision; } /** User-Agent. */ public String getUserAgent() { return userAgent; } /** User-Agent. */ public void setUserAgent(String userAgent) { this.userAgent = userAgent; } /** V8 version. */ public String getJsVersion() { return jsVersion; } /** V8 version. */ public void setJsVersion(String jsVersion) { this.jsVersion = jsVersion; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/WindowForTarget.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class WindowForTarget { private Integer windowId; private Bounds bounds; /** Browser window id. */ public Integer getWindowId() { return windowId; } /** Browser window id. */ public void setWindowId(Integer windowId) { this.windowId = windowId; } /** * Bounds information of the window. When window state is 'minimized', the restored window * position and size are returned. */ public Bounds getBounds() { return bounds; } /** * Bounds information of the window. When window state is 'minimized', the restored window * position and size are returned. */ public void setBounds(Bounds bounds) { this.bounds = bounds; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/WindowState.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** The state of the browser window. */ public enum WindowState { @JsonProperty("normal") NORMAL, @JsonProperty("minimized") MINIMIZED, @JsonProperty("maximized") MAXIMIZED, @JsonProperty("fullscreen") FULLSCREEN }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/Cache.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.storage.StorageBucket; /** Cache identifier. */ public class Cache { private String cacheId; private String securityOrigin; private String storageKey; @Optional private StorageBucket storageBucket; private String cacheName; /** An opaque unique id of the cache. */ public String getCacheId() { return cacheId; } /** An opaque unique id of the cache. */ public void setCacheId(String cacheId) { this.cacheId = cacheId; } /** Security origin of the cache. */ public String getSecurityOrigin() { return securityOrigin; } /** Security origin of the cache. */ public void setSecurityOrigin(String securityOrigin) { this.securityOrigin = securityOrigin; } /** Storage key of the cache. */ public String getStorageKey() { return storageKey; } /** Storage key of the cache. */ public void setStorageKey(String storageKey) { this.storageKey = storageKey; } /** Storage bucket of the cache. */ public StorageBucket getStorageBucket() { return storageBucket; } /** Storage bucket of the cache. */ public void setStorageBucket(StorageBucket storageBucket) { this.storageBucket = storageBucket; } /** The name of the cache. */ public String getCacheName() { return cacheName; } /** The name of the cache. */ public void setCacheName(String cacheName) { this.cacheName = cacheName; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/CachedResponse.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Cached response */ public class CachedResponse { private String body; /** Entry content, base64-encoded. (Encoded as a base64 string when passed over JSON) */ public String getBody() { return body; } /** Entry content, base64-encoded. (Encoded as a base64 string when passed over JSON) */ public void setBody(String body) { this.body = body; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/CachedResponseType.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** type of HTTP response cached */ public enum CachedResponseType { @JsonProperty("basic") BASIC, @JsonProperty("cors") CORS, @JsonProperty("default") DEFAULT, @JsonProperty("error") ERROR, @JsonProperty("opaqueResponse") OPAQUE_RESPONSE, @JsonProperty("opaqueRedirect") OPAQUE_REDIRECT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/DataEntry.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** Data entry. */ public class DataEntry { private String requestURL; private String requestMethod; private List<Header> requestHeaders; private Double responseTime; private Integer responseStatus; private String responseStatusText; private CachedResponseType responseType; private List<Header> responseHeaders; /** Request URL. */ public String getRequestURL() { return requestURL; } /** Request URL. */ public void setRequestURL(String requestURL) { this.requestURL = requestURL; } /** Request method. */ public String getRequestMethod() { return requestMethod; } /** Request method. */ public void setRequestMethod(String requestMethod) { this.requestMethod = requestMethod; } /** Request headers */ public List<Header> getRequestHeaders() { return requestHeaders; } /** Request headers */ public void setRequestHeaders(List<Header> requestHeaders) { this.requestHeaders = requestHeaders; } /** Number of seconds since epoch. */ public Double getResponseTime() { return responseTime; } /** Number of seconds since epoch. */ public void setResponseTime(Double responseTime) { this.responseTime = responseTime; } /** HTTP response status code. */ public Integer getResponseStatus() { return responseStatus; } /** HTTP response status code. */ public void setResponseStatus(Integer responseStatus) { this.responseStatus = responseStatus; } /** HTTP response status text. */ public String getResponseStatusText() { return responseStatusText; } /** HTTP response status text. */ public void setResponseStatusText(String responseStatusText) { this.responseStatusText = responseStatusText; } /** HTTP response type */ public CachedResponseType getResponseType() { return responseType; } /** HTTP response type */ public void setResponseType(CachedResponseType responseType) { this.responseType = responseType; } /** Response headers */ public List<Header> getResponseHeaders() { return responseHeaders; } /** Response headers */ public void setResponseHeaders(List<Header> responseHeaders) { this.responseHeaders = responseHeaders; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/Header.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class Header { private String name; private String value; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cachestorage/RequestEntries.java
package com.github.kklisura.cdt.protocol.v2023.types.cachestorage; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; public class RequestEntries { private List<DataEntry> cacheDataEntries; private Double returnCount; /** Array of object store data entries. */ public List<DataEntry> getCacheDataEntries() { return cacheDataEntries; } /** Array of object store data entries. */ public void setCacheDataEntries(List<DataEntry> cacheDataEntries) { this.cacheDataEntries = cacheDataEntries; } /** * Count of returned entries from this storage. If pathFilter is empty, it is the count of all * entries from this storage. */ public Double getReturnCount() { return returnCount; } /** * Count of returned entries from this storage. If pathFilter is empty, it is the count of all * entries from this storage. */ public void setReturnCount(Double returnCount) { this.returnCount = returnCount; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/cast/Sink.java
package com.github.kklisura.cdt.protocol.v2023.types.cast; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class Sink { private String name; private String id; @Optional private String session; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } public void setId(String id) { this.id = id; } /** * Text describing the current session. Present only if there is an active session on the sink. */ public String getSession() { return session; } /** * Text describing the current session. Present only if there is an active session on the sink. */ public void setSession(String session) { this.session = session; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/console/ConsoleMessage.java
package com.github.kklisura.cdt.protocol.v2023.types.console; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Console message. */ public class ConsoleMessage { private ConsoleMessageSource source; private ConsoleMessageLevel level; private String text; @Optional private String url; @Optional private Integer line; @Optional private Integer column; /** Message source. */ public ConsoleMessageSource getSource() { return source; } /** Message source. */ public void setSource(ConsoleMessageSource source) { this.source = source; } /** Message severity. */ public ConsoleMessageLevel getLevel() { return level; } /** Message severity. */ public void setLevel(ConsoleMessageLevel level) { this.level = level; } /** Message text. */ public String getText() { return text; } /** Message text. */ public void setText(String text) { this.text = text; } /** URL of the message origin. */ public String getUrl() { return url; } /** URL of the message origin. */ public void setUrl(String url) { this.url = url; } /** Line number in the resource that generated this message (1-based). */ public Integer getLine() { return line; } /** Line number in the resource that generated this message (1-based). */ public void setLine(Integer line) { this.line = line; } /** Column number in the resource that generated this message (1-based). */ public Integer getColumn() { return column; } /** Column number in the resource that generated this message (1-based). */ public void setColumn(Integer column) { this.column = column; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/console/ConsoleMessageLevel.java
package com.github.kklisura.cdt.protocol.v2023.types.console; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Message severity. */ public enum ConsoleMessageLevel { @JsonProperty("log") LOG, @JsonProperty("warning") WARNING, @JsonProperty("error") ERROR, @JsonProperty("debug") DEBUG, @JsonProperty("info") INFO }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/console/ConsoleMessageSource.java
package com.github.kklisura.cdt.protocol.v2023.types.console; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Message source. */ public enum ConsoleMessageSource { @JsonProperty("xml") XML, @JsonProperty("javascript") JAVASCRIPT, @JsonProperty("network") NETWORK, @JsonProperty("console-api") CONSOLE_API, @JsonProperty("storage") STORAGE, @JsonProperty("appcache") APPCACHE, @JsonProperty("rendering") RENDERING, @JsonProperty("security") SECURITY, @JsonProperty("other") OTHER, @JsonProperty("deprecation") DEPRECATION, @JsonProperty("worker") WORKER }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/BackgroundColors.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; public class BackgroundColors { @Optional private List<String> backgroundColors; @Optional private String computedFontSize; @Optional private String computedFontWeight; /** * The range of background colors behind this element, if it contains any visible text. If no * visible text is present, this will be undefined. In the case of a flat background color, this * will consist of simply that color. In the case of a gradient, this will consist of each of the * color stops. For anything more complicated, this will be an empty array. Images will be ignored * (as if the image had failed to load). */ public List<String> getBackgroundColors() { return backgroundColors; } /** * The range of background colors behind this element, if it contains any visible text. If no * visible text is present, this will be undefined. In the case of a flat background color, this * will consist of simply that color. In the case of a gradient, this will consist of each of the * color stops. For anything more complicated, this will be an empty array. Images will be ignored * (as if the image had failed to load). */ public void setBackgroundColors(List<String> backgroundColors) { this.backgroundColors = backgroundColors; } /** The computed font size for this node, as a CSS computed value string (e.g. '12px'). */ public String getComputedFontSize() { return computedFontSize; } /** The computed font size for this node, as a CSS computed value string (e.g. '12px'). */ public void setComputedFontSize(String computedFontSize) { this.computedFontSize = computedFontSize; } /** * The computed font weight for this node, as a CSS computed value string (e.g. 'normal' or * '100'). */ public String getComputedFontWeight() { return computedFontWeight; } /** * The computed font weight for this node, as a CSS computed value string (e.g. 'normal' or * '100'). */ public void setComputedFontWeight(String computedFontWeight) { this.computedFontWeight = computedFontWeight; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSComputedStyleProperty.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class CSSComputedStyleProperty { private String name; private String value; /** Computed style property name. */ public String getName() { return name; } /** Computed style property name. */ public void setName(String name) { this.name = name; } /** Computed style property value. */ public String getValue() { return value; } /** Computed style property value. */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSContainerQuery.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.dom.LogicalAxes; import com.github.kklisura.cdt.protocol.v2023.types.dom.PhysicalAxes; /** CSS container query rule descriptor. */ @Experimental public class CSSContainerQuery { private String text; @Optional private SourceRange range; @Optional private String styleSheetId; @Optional private String name; @Optional private PhysicalAxes physicalAxes; @Optional private LogicalAxes logicalAxes; /** Container query text. */ public String getText() { return text; } /** Container query text. */ public void setText(String text) { this.text = text; } /** The associated rule header range in the enclosing stylesheet (if available). */ public SourceRange getRange() { return range; } /** The associated rule header range in the enclosing stylesheet (if available). */ public void setRange(SourceRange range) { this.range = range; } /** Identifier of the stylesheet containing this object (if exists). */ public String getStyleSheetId() { return styleSheetId; } /** Identifier of the stylesheet containing this object (if exists). */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Optional name for the container. */ public String getName() { return name; } /** Optional name for the container. */ public void setName(String name) { this.name = name; } /** Optional physical axes queried for the container. */ public PhysicalAxes getPhysicalAxes() { return physicalAxes; } /** Optional physical axes queried for the container. */ public void setPhysicalAxes(PhysicalAxes physicalAxes) { this.physicalAxes = physicalAxes; } /** Optional logical axes queried for the container. */ public LogicalAxes getLogicalAxes() { return logicalAxes; } /** Optional logical axes queried for the container. */ public void setLogicalAxes(LogicalAxes logicalAxes) { this.logicalAxes = logicalAxes; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSKeyframeRule.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS keyframe rule representation. */ public class CSSKeyframeRule { @Optional private String styleSheetId; private StyleSheetOrigin origin; private Value keyText; private CSSStyle style; /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public String getStyleSheetId() { return styleSheetId; } /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Parent stylesheet's origin. */ public StyleSheetOrigin getOrigin() { return origin; } /** Parent stylesheet's origin. */ public void setOrigin(StyleSheetOrigin origin) { this.origin = origin; } /** Associated key text. */ public Value getKeyText() { return keyText; } /** Associated key text. */ public void setKeyText(Value keyText) { this.keyText = keyText; } /** Associated style declaration. */ public CSSStyle getStyle() { return style; } /** Associated style declaration. */ public void setStyle(CSSStyle style) { this.style = style; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSKeyframesRule.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** CSS keyframes rule representation. */ public class CSSKeyframesRule { private Value animationName; private List<CSSKeyframeRule> keyframes; /** Animation name. */ public Value getAnimationName() { return animationName; } /** Animation name. */ public void setAnimationName(Value animationName) { this.animationName = animationName; } /** List of keyframes. */ public List<CSSKeyframeRule> getKeyframes() { return keyframes; } /** List of keyframes. */ public void setKeyframes(List<CSSKeyframeRule> keyframes) { this.keyframes = keyframes; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSLayer.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS Layer at-rule descriptor. */ @Experimental public class CSSLayer { private String text; @Optional private SourceRange range; @Optional private String styleSheetId; /** Layer name. */ public String getText() { return text; } /** Layer name. */ public void setText(String text) { this.text = text; } /** The associated rule header range in the enclosing stylesheet (if available). */ public SourceRange getRange() { return range; } /** The associated rule header range in the enclosing stylesheet (if available). */ public void setRange(SourceRange range) { this.range = range; } /** Identifier of the stylesheet containing this object (if exists). */ public String getStyleSheetId() { return styleSheetId; } /** Identifier of the stylesheet containing this object (if exists). */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSLayerData.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** CSS Layer data. */ @Experimental public class CSSLayerData { private String name; @Optional private List<CSSLayerData> subLayers; private Double order; /** Layer name. */ public String getName() { return name; } /** Layer name. */ public void setName(String name) { this.name = name; } /** Direct sub-layers */ public List<CSSLayerData> getSubLayers() { return subLayers; } /** Direct sub-layers */ public void setSubLayers(List<CSSLayerData> subLayers) { this.subLayers = subLayers; } /** * Layer order. The order determines the order of the layer in the cascade order. A higher number * has higher priority in the cascade order. */ public Double getOrder() { return order; } /** * Layer order. The order determines the order of the layer in the cascade order. A higher number * has higher priority in the cascade order. */ public void setOrder(Double order) { this.order = order; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSMedia.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** CSS media rule descriptor. */ public class CSSMedia { private String text; private CSSMediaSource source; @Optional private String sourceURL; @Optional private SourceRange range; @Optional private String styleSheetId; @Optional private List<MediaQuery> mediaList; /** Media query text. */ public String getText() { return text; } /** Media query text. */ public void setText(String text) { this.text = text; } /** * Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if specified * by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked stylesheet's * LINK tag, "inlineSheet" if specified by a "media" attribute in an inline stylesheet's STYLE * tag. */ public CSSMediaSource getSource() { return source; } /** * Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if specified * by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked stylesheet's * LINK tag, "inlineSheet" if specified by a "media" attribute in an inline stylesheet's STYLE * tag. */ public void setSource(CSSMediaSource source) { this.source = source; } /** URL of the document containing the media query description. */ public String getSourceURL() { return sourceURL; } /** URL of the document containing the media query description. */ public void setSourceURL(String sourceURL) { this.sourceURL = sourceURL; } /** * The associated rule (@media or @import) header range in the enclosing stylesheet (if * available). */ public SourceRange getRange() { return range; } /** * The associated rule (@media or @import) header range in the enclosing stylesheet (if * available). */ public void setRange(SourceRange range) { this.range = range; } /** Identifier of the stylesheet containing this object (if exists). */ public String getStyleSheetId() { return styleSheetId; } /** Identifier of the stylesheet containing this object (if exists). */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Array of media queries. */ public List<MediaQuery> getMediaList() { return mediaList; } /** Array of media queries. */ public void setMediaList(List<MediaQuery> mediaList) { this.mediaList = mediaList; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSMediaSource.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if specified * by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked stylesheet's * LINK tag, "inlineSheet" if specified by a "media" attribute in an inline stylesheet's STYLE tag. */ public enum CSSMediaSource { @JsonProperty("mediaRule") MEDIA_RULE, @JsonProperty("importRule") IMPORT_RULE, @JsonProperty("linkedSheet") LINKED_SHEET, @JsonProperty("inlineSheet") INLINE_SHEET }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSPositionFallbackRule.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** CSS position-fallback rule representation. */ public class CSSPositionFallbackRule { private Value name; private List<CSSTryRule> tryRules; public Value getName() { return name; } public void setName(Value name) { this.name = name; } /** List of keyframes. */ public List<CSSTryRule> getTryRules() { return tryRules; } /** List of keyframes. */ public void setTryRules(List<CSSTryRule> tryRules) { this.tryRules = tryRules; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSProperty.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** CSS property declaration data. */ public class CSSProperty { private String name; private String value; @Optional private Boolean important; @Optional private Boolean implicit; @Optional private String text; @Optional private Boolean parsedOk; @Optional private Boolean disabled; @Optional private SourceRange range; @Experimental @Optional private List<CSSProperty> longhandProperties; /** The property name. */ public String getName() { return name; } /** The property name. */ public void setName(String name) { this.name = name; } /** The property value. */ public String getValue() { return value; } /** The property value. */ public void setValue(String value) { this.value = value; } /** Whether the property has "!important" annotation (implies `false` if absent). */ public Boolean getImportant() { return important; } /** Whether the property has "!important" annotation (implies `false` if absent). */ public void setImportant(Boolean important) { this.important = important; } /** Whether the property is implicit (implies `false` if absent). */ public Boolean getImplicit() { return implicit; } /** Whether the property is implicit (implies `false` if absent). */ public void setImplicit(Boolean implicit) { this.implicit = implicit; } /** The full property text as specified in the style. */ public String getText() { return text; } /** The full property text as specified in the style. */ public void setText(String text) { this.text = text; } /** Whether the property is understood by the browser (implies `true` if absent). */ public Boolean getParsedOk() { return parsedOk; } /** Whether the property is understood by the browser (implies `true` if absent). */ public void setParsedOk(Boolean parsedOk) { this.parsedOk = parsedOk; } /** Whether the property is disabled by the user (present for source-based properties only). */ public Boolean getDisabled() { return disabled; } /** Whether the property is disabled by the user (present for source-based properties only). */ public void setDisabled(Boolean disabled) { this.disabled = disabled; } /** The entire property range in the enclosing style declaration (if available). */ public SourceRange getRange() { return range; } /** The entire property range in the enclosing style declaration (if available). */ public void setRange(SourceRange range) { this.range = range; } /** * Parsed longhand components of this property if it is a shorthand. This field will be empty if * the given property is not a shorthand. */ public List<CSSProperty> getLonghandProperties() { return longhandProperties; } /** * Parsed longhand components of this property if it is a shorthand. This field will be empty if * the given property is not a shorthand. */ public void setLonghandProperties(List<CSSProperty> longhandProperties) { this.longhandProperties = longhandProperties; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSRule.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** CSS rule representation. */ public class CSSRule { @Optional private String styleSheetId; private SelectorList selectorList; @Experimental @Optional private List<String> nestingSelectors; private StyleSheetOrigin origin; private CSSStyle style; @Optional private List<CSSMedia> media; @Experimental @Optional private List<CSSContainerQuery> containerQueries; @Experimental @Optional private List<CSSSupports> supports; @Experimental @Optional private List<CSSLayer> layers; @Experimental @Optional private List<CSSScope> scopes; @Experimental @Optional private List<CSSRuleType> ruleTypes; /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public String getStyleSheetId() { return styleSheetId; } /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Rule selector data. */ public SelectorList getSelectorList() { return selectorList; } /** Rule selector data. */ public void setSelectorList(SelectorList selectorList) { this.selectorList = selectorList; } /** Array of selectors from ancestor style rules, sorted by distance from the current rule. */ public List<String> getNestingSelectors() { return nestingSelectors; } /** Array of selectors from ancestor style rules, sorted by distance from the current rule. */ public void setNestingSelectors(List<String> nestingSelectors) { this.nestingSelectors = nestingSelectors; } /** Parent stylesheet's origin. */ public StyleSheetOrigin getOrigin() { return origin; } /** Parent stylesheet's origin. */ public void setOrigin(StyleSheetOrigin origin) { this.origin = origin; } /** Associated style declaration. */ public CSSStyle getStyle() { return style; } /** Associated style declaration. */ public void setStyle(CSSStyle style) { this.style = style; } /** * Media list array (for rules involving media queries). The array enumerates media queries * starting with the innermost one, going outwards. */ public List<CSSMedia> getMedia() { return media; } /** * Media list array (for rules involving media queries). The array enumerates media queries * starting with the innermost one, going outwards. */ public void setMedia(List<CSSMedia> media) { this.media = media; } /** * Container query list array (for rules involving container queries). The array enumerates * container queries starting with the innermost one, going outwards. */ public List<CSSContainerQuery> getContainerQueries() { return containerQueries; } /** * Container query list array (for rules involving container queries). The array enumerates * container queries starting with the innermost one, going outwards. */ public void setContainerQueries(List<CSSContainerQuery> containerQueries) { this.containerQueries = containerQueries; } /** * @supports CSS at-rule array. The array enumerates @supports at-rules starting with the * innermost one, going outwards. */ public List<CSSSupports> getSupports() { return supports; } /** * @supports CSS at-rule array. The array enumerates @supports at-rules starting with the * innermost one, going outwards. */ public void setSupports(List<CSSSupports> supports) { this.supports = supports; } /** * Cascade layer array. Contains the layer hierarchy that this rule belongs to starting with the * innermost layer and going outwards. */ public List<CSSLayer> getLayers() { return layers; } /** * Cascade layer array. Contains the layer hierarchy that this rule belongs to starting with the * innermost layer and going outwards. */ public void setLayers(List<CSSLayer> layers) { this.layers = layers; } /** * @scope CSS at-rule array. The array enumerates @scope at-rules starting with the innermost one, * going outwards. */ public List<CSSScope> getScopes() { return scopes; } /** * @scope CSS at-rule array. The array enumerates @scope at-rules starting with the innermost one, * going outwards. */ public void setScopes(List<CSSScope> scopes) { this.scopes = scopes; } /** The array keeps the types of ancestor CSSRules from the innermost going outwards. */ public List<CSSRuleType> getRuleTypes() { return ruleTypes; } /** The array keeps the types of ancestor CSSRules from the innermost going outwards. */ public void setRuleTypes(List<CSSRuleType> ruleTypes) { this.ruleTypes = ruleTypes; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSRuleType.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Enum indicating the type of a CSS rule, used to represent the order of a style rule's ancestors. * This list only contains rule types that are collected during the ancestor rule collection. */ public enum CSSRuleType { @JsonProperty("MediaRule") MEDIA_RULE, @JsonProperty("SupportsRule") SUPPORTS_RULE, @JsonProperty("ContainerRule") CONTAINER_RULE, @JsonProperty("LayerRule") LAYER_RULE, @JsonProperty("ScopeRule") SCOPE_RULE, @JsonProperty("StyleRule") STYLE_RULE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSScope.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS Scope at-rule descriptor. */ @Experimental public class CSSScope { private String text; @Optional private SourceRange range; @Optional private String styleSheetId; /** Scope rule text. */ public String getText() { return text; } /** Scope rule text. */ public void setText(String text) { this.text = text; } /** The associated rule header range in the enclosing stylesheet (if available). */ public SourceRange getRange() { return range; } /** The associated rule header range in the enclosing stylesheet (if available). */ public void setRange(SourceRange range) { this.range = range; } /** Identifier of the stylesheet containing this object (if exists). */ public String getStyleSheetId() { return styleSheetId; } /** Identifier of the stylesheet containing this object (if exists). */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSStyle.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** CSS style representation. */ public class CSSStyle { @Optional private String styleSheetId; private List<CSSProperty> cssProperties; private List<ShorthandEntry> shorthandEntries; @Optional private String cssText; @Optional private SourceRange range; /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public String getStyleSheetId() { return styleSheetId; } /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** CSS properties in the style. */ public List<CSSProperty> getCssProperties() { return cssProperties; } /** CSS properties in the style. */ public void setCssProperties(List<CSSProperty> cssProperties) { this.cssProperties = cssProperties; } /** Computed values for all shorthands found in the style. */ public List<ShorthandEntry> getShorthandEntries() { return shorthandEntries; } /** Computed values for all shorthands found in the style. */ public void setShorthandEntries(List<ShorthandEntry> shorthandEntries) { this.shorthandEntries = shorthandEntries; } /** Style declaration text (if available). */ public String getCssText() { return cssText; } /** Style declaration text (if available). */ public void setCssText(String cssText) { this.cssText = cssText; } /** Style declaration range in the enclosing stylesheet (if available). */ public SourceRange getRange() { return range; } /** Style declaration range in the enclosing stylesheet (if available). */ public void setRange(SourceRange range) { this.range = range; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSStyleSheetHeader.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS stylesheet metainformation. */ public class CSSStyleSheetHeader { private String styleSheetId; private String frameId; private String sourceURL; @Optional private String sourceMapURL; private StyleSheetOrigin origin; private String title; @Optional private Integer ownerNode; private Boolean disabled; @Optional private Boolean hasSourceURL; private Boolean isInline; private Boolean isMutable; private Boolean isConstructed; private Double startLine; private Double startColumn; private Double length; private Double endLine; private Double endColumn; @Experimental @Optional private Boolean loadingFailed; /** The stylesheet identifier. */ public String getStyleSheetId() { return styleSheetId; } /** The stylesheet identifier. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Owner frame identifier. */ public String getFrameId() { return frameId; } /** Owner frame identifier. */ public void setFrameId(String frameId) { this.frameId = frameId; } /** * Stylesheet resource URL. Empty if this is a constructed stylesheet created using new * CSSStyleSheet() (but non-empty if this is a constructed sylesheet imported as a CSS module * script). */ public String getSourceURL() { return sourceURL; } /** * Stylesheet resource URL. Empty if this is a constructed stylesheet created using new * CSSStyleSheet() (but non-empty if this is a constructed sylesheet imported as a CSS module * script). */ public void setSourceURL(String sourceURL) { this.sourceURL = sourceURL; } /** URL of source map associated with the stylesheet (if any). */ public String getSourceMapURL() { return sourceMapURL; } /** URL of source map associated with the stylesheet (if any). */ public void setSourceMapURL(String sourceMapURL) { this.sourceMapURL = sourceMapURL; } /** Stylesheet origin. */ public StyleSheetOrigin getOrigin() { return origin; } /** Stylesheet origin. */ public void setOrigin(StyleSheetOrigin origin) { this.origin = origin; } /** Stylesheet title. */ public String getTitle() { return title; } /** Stylesheet title. */ public void setTitle(String title) { this.title = title; } /** The backend id for the owner node of the stylesheet. */ public Integer getOwnerNode() { return ownerNode; } /** The backend id for the owner node of the stylesheet. */ public void setOwnerNode(Integer ownerNode) { this.ownerNode = ownerNode; } /** Denotes whether the stylesheet is disabled. */ public Boolean getDisabled() { return disabled; } /** Denotes whether the stylesheet is disabled. */ public void setDisabled(Boolean disabled) { this.disabled = disabled; } /** Whether the sourceURL field value comes from the sourceURL comment. */ public Boolean getHasSourceURL() { return hasSourceURL; } /** Whether the sourceURL field value comes from the sourceURL comment. */ public void setHasSourceURL(Boolean hasSourceURL) { this.hasSourceURL = hasSourceURL; } /** * Whether this stylesheet is created for STYLE tag by parser. This flag is not set for * document.written STYLE tags. */ public Boolean getIsInline() { return isInline; } /** * Whether this stylesheet is created for STYLE tag by parser. This flag is not set for * document.written STYLE tags. */ public void setIsInline(Boolean isInline) { this.isInline = isInline; } /** * Whether this stylesheet is mutable. Inline stylesheets become mutable after they have been * modified via CSSOM API. `<link>` element's stylesheets become mutable only if DevTools modifies * them. Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation. */ public Boolean getIsMutable() { return isMutable; } /** * Whether this stylesheet is mutable. Inline stylesheets become mutable after they have been * modified via CSSOM API. `<link>` element's stylesheets become mutable only if DevTools modifies * them. Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation. */ public void setIsMutable(Boolean isMutable) { this.isMutable = isMutable; } /** * True if this stylesheet is created through new CSSStyleSheet() or imported as a CSS module * script. */ public Boolean getIsConstructed() { return isConstructed; } /** * True if this stylesheet is created through new CSSStyleSheet() or imported as a CSS module * script. */ public void setIsConstructed(Boolean isConstructed) { this.isConstructed = isConstructed; } /** Line offset of the stylesheet within the resource (zero based). */ public Double getStartLine() { return startLine; } /** Line offset of the stylesheet within the resource (zero based). */ public void setStartLine(Double startLine) { this.startLine = startLine; } /** Column offset of the stylesheet within the resource (zero based). */ public Double getStartColumn() { return startColumn; } /** Column offset of the stylesheet within the resource (zero based). */ public void setStartColumn(Double startColumn) { this.startColumn = startColumn; } /** Size of the content (in characters). */ public Double getLength() { return length; } /** Size of the content (in characters). */ public void setLength(Double length) { this.length = length; } /** Line offset of the end of the stylesheet within the resource (zero based). */ public Double getEndLine() { return endLine; } /** Line offset of the end of the stylesheet within the resource (zero based). */ public void setEndLine(Double endLine) { this.endLine = endLine; } /** Column offset of the end of the stylesheet within the resource (zero based). */ public Double getEndColumn() { return endColumn; } /** Column offset of the end of the stylesheet within the resource (zero based). */ public void setEndColumn(Double endColumn) { this.endColumn = endColumn; } /** * If the style sheet was loaded from a network resource, this indicates when the resource failed * to load */ public Boolean getLoadingFailed() { return loadingFailed; } /** * If the style sheet was loaded from a network resource, this indicates when the resource failed * to load */ public void setLoadingFailed(Boolean loadingFailed) { this.loadingFailed = loadingFailed; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSSupports.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS Supports at-rule descriptor. */ @Experimental public class CSSSupports { private String text; private Boolean active; @Optional private SourceRange range; @Optional private String styleSheetId; /** Supports rule text. */ public String getText() { return text; } /** Supports rule text. */ public void setText(String text) { this.text = text; } /** Whether the supports condition is satisfied. */ public Boolean getActive() { return active; } /** Whether the supports condition is satisfied. */ public void setActive(Boolean active) { this.active = active; } /** The associated rule header range in the enclosing stylesheet (if available). */ public SourceRange getRange() { return range; } /** The associated rule header range in the enclosing stylesheet (if available). */ public void setRange(SourceRange range) { this.range = range; } /** Identifier of the stylesheet containing this object (if exists). */ public String getStyleSheetId() { return styleSheetId; } /** Identifier of the stylesheet containing this object (if exists). */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/CSSTryRule.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** CSS try rule representation. */ public class CSSTryRule { @Optional private String styleSheetId; private StyleSheetOrigin origin; private CSSStyle style; /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public String getStyleSheetId() { return styleSheetId; } /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Parent stylesheet's origin. */ public StyleSheetOrigin getOrigin() { return origin; } /** Parent stylesheet's origin. */ public void setOrigin(StyleSheetOrigin origin) { this.origin = origin; } /** Associated style declaration. */ public CSSStyle getStyle() { return style; } /** Associated style declaration. */ public void setStyle(CSSStyle style) { this.style = style; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/FontFace.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** * Properties of a web font: * https://www.w3.org/TR/2008/REC-CSS2-20080411/fonts.html#font-descriptions and additional * information such as platformFontFamily and fontVariationAxes. */ public class FontFace { private String fontFamily; private String fontStyle; private String fontVariant; private String fontWeight; private String fontStretch; private String fontDisplay; private String unicodeRange; private String src; private String platformFontFamily; @Optional private List<FontVariationAxis> fontVariationAxes; /** The font-family. */ public String getFontFamily() { return fontFamily; } /** The font-family. */ public void setFontFamily(String fontFamily) { this.fontFamily = fontFamily; } /** The font-style. */ public String getFontStyle() { return fontStyle; } /** The font-style. */ public void setFontStyle(String fontStyle) { this.fontStyle = fontStyle; } /** The font-variant. */ public String getFontVariant() { return fontVariant; } /** The font-variant. */ public void setFontVariant(String fontVariant) { this.fontVariant = fontVariant; } /** The font-weight. */ public String getFontWeight() { return fontWeight; } /** The font-weight. */ public void setFontWeight(String fontWeight) { this.fontWeight = fontWeight; } /** The font-stretch. */ public String getFontStretch() { return fontStretch; } /** The font-stretch. */ public void setFontStretch(String fontStretch) { this.fontStretch = fontStretch; } /** The font-display. */ public String getFontDisplay() { return fontDisplay; } /** The font-display. */ public void setFontDisplay(String fontDisplay) { this.fontDisplay = fontDisplay; } /** The unicode-range. */ public String getUnicodeRange() { return unicodeRange; } /** The unicode-range. */ public void setUnicodeRange(String unicodeRange) { this.unicodeRange = unicodeRange; } /** The src. */ public String getSrc() { return src; } /** The src. */ public void setSrc(String src) { this.src = src; } /** The resolved platform font family */ public String getPlatformFontFamily() { return platformFontFamily; } /** The resolved platform font family */ public void setPlatformFontFamily(String platformFontFamily) { this.platformFontFamily = platformFontFamily; } /** Available variation settings (a.k.a. "axes"). */ public List<FontVariationAxis> getFontVariationAxes() { return fontVariationAxes; } /** Available variation settings (a.k.a. "axes"). */ public void setFontVariationAxes(List<FontVariationAxis> fontVariationAxes) { this.fontVariationAxes = fontVariationAxes; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/FontVariationAxis.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Information about font variation axes for variable fonts */ public class FontVariationAxis { private String tag; private String name; private Double minValue; private Double maxValue; private Double defaultValue; /** The font-variation-setting tag (a.k.a. "axis tag"). */ public String getTag() { return tag; } /** The font-variation-setting tag (a.k.a. "axis tag"). */ public void setTag(String tag) { this.tag = tag; } /** Human-readable variation name in the default language (normally, "en"). */ public String getName() { return name; } /** Human-readable variation name in the default language (normally, "en"). */ public void setName(String name) { this.name = name; } /** The minimum value (inclusive) the font supports for this tag. */ public Double getMinValue() { return minValue; } /** The minimum value (inclusive) the font supports for this tag. */ public void setMinValue(Double minValue) { this.minValue = minValue; } /** The maximum value (inclusive) the font supports for this tag. */ public Double getMaxValue() { return maxValue; } /** The maximum value (inclusive) the font supports for this tag. */ public void setMaxValue(Double maxValue) { this.maxValue = maxValue; } /** The default value. */ public Double getDefaultValue() { return defaultValue; } /** The default value. */ public void setDefaultValue(Double defaultValue) { this.defaultValue = defaultValue; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/InheritedPseudoElementMatches.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** Inherited pseudo element matches from pseudos of an ancestor node. */ public class InheritedPseudoElementMatches { private List<PseudoElementMatches> pseudoElements; /** Matches of pseudo styles from the pseudos of an ancestor node. */ public List<PseudoElementMatches> getPseudoElements() { return pseudoElements; } /** Matches of pseudo styles from the pseudos of an ancestor node. */ public void setPseudoElements(List<PseudoElementMatches> pseudoElements) { this.pseudoElements = pseudoElements; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/InheritedStyleEntry.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** Inherited CSS rule collection from ancestor node. */ public class InheritedStyleEntry { @Optional private CSSStyle inlineStyle; private List<RuleMatch> matchedCSSRules; /** The ancestor node's inline style, if any, in the style inheritance chain. */ public CSSStyle getInlineStyle() { return inlineStyle; } /** The ancestor node's inline style, if any, in the style inheritance chain. */ public void setInlineStyle(CSSStyle inlineStyle) { this.inlineStyle = inlineStyle; } /** Matches of CSS rules matching the ancestor node in the style inheritance chain. */ public List<RuleMatch> getMatchedCSSRules() { return matchedCSSRules; } /** Matches of CSS rules matching the ancestor node in the style inheritance chain. */ public void setMatchedCSSRules(List<RuleMatch> matchedCSSRules) { this.matchedCSSRules = matchedCSSRules; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/InlineStylesForNode.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class InlineStylesForNode { @Optional private CSSStyle inlineStyle; @Optional private CSSStyle attributesStyle; /** Inline style for the specified DOM node. */ public CSSStyle getInlineStyle() { return inlineStyle; } /** Inline style for the specified DOM node. */ public void setInlineStyle(CSSStyle inlineStyle) { this.inlineStyle = inlineStyle; } /** Attribute-defined element style (e.g. resulting from "width=20 height=100%"). */ public CSSStyle getAttributesStyle() { return attributesStyle; } /** Attribute-defined element style (e.g. resulting from "width=20 height=100%"). */ public void setAttributesStyle(CSSStyle attributesStyle) { this.attributesStyle = attributesStyle; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/MatchedStylesForNode.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; public class MatchedStylesForNode { @Optional private CSSStyle inlineStyle; @Optional private CSSStyle attributesStyle; @Optional private List<RuleMatch> matchedCSSRules; @Optional private List<PseudoElementMatches> pseudoElements; @Optional private List<InheritedStyleEntry> inherited; @Optional private List<InheritedPseudoElementMatches> inheritedPseudoElements; @Optional private List<CSSKeyframesRule> cssKeyframesRules; @Optional private List<CSSPositionFallbackRule> cssPositionFallbackRules; @Experimental @Optional private Integer parentLayoutNodeId; /** Inline style for the specified DOM node. */ public CSSStyle getInlineStyle() { return inlineStyle; } /** Inline style for the specified DOM node. */ public void setInlineStyle(CSSStyle inlineStyle) { this.inlineStyle = inlineStyle; } /** Attribute-defined element style (e.g. resulting from "width=20 height=100%"). */ public CSSStyle getAttributesStyle() { return attributesStyle; } /** Attribute-defined element style (e.g. resulting from "width=20 height=100%"). */ public void setAttributesStyle(CSSStyle attributesStyle) { this.attributesStyle = attributesStyle; } /** CSS rules matching this node, from all applicable stylesheets. */ public List<RuleMatch> getMatchedCSSRules() { return matchedCSSRules; } /** CSS rules matching this node, from all applicable stylesheets. */ public void setMatchedCSSRules(List<RuleMatch> matchedCSSRules) { this.matchedCSSRules = matchedCSSRules; } /** Pseudo style matches for this node. */ public List<PseudoElementMatches> getPseudoElements() { return pseudoElements; } /** Pseudo style matches for this node. */ public void setPseudoElements(List<PseudoElementMatches> pseudoElements) { this.pseudoElements = pseudoElements; } /** A chain of inherited styles (from the immediate node parent up to the DOM tree root). */ public List<InheritedStyleEntry> getInherited() { return inherited; } /** A chain of inherited styles (from the immediate node parent up to the DOM tree root). */ public void setInherited(List<InheritedStyleEntry> inherited) { this.inherited = inherited; } /** * A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree * root). */ public List<InheritedPseudoElementMatches> getInheritedPseudoElements() { return inheritedPseudoElements; } /** * A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree * root). */ public void setInheritedPseudoElements( List<InheritedPseudoElementMatches> inheritedPseudoElements) { this.inheritedPseudoElements = inheritedPseudoElements; } /** A list of CSS keyframed animations matching this node. */ public List<CSSKeyframesRule> getCssKeyframesRules() { return cssKeyframesRules; } /** A list of CSS keyframed animations matching this node. */ public void setCssKeyframesRules(List<CSSKeyframesRule> cssKeyframesRules) { this.cssKeyframesRules = cssKeyframesRules; } /** A list of CSS position fallbacks matching this node. */ public List<CSSPositionFallbackRule> getCssPositionFallbackRules() { return cssPositionFallbackRules; } /** A list of CSS position fallbacks matching this node. */ public void setCssPositionFallbackRules(List<CSSPositionFallbackRule> cssPositionFallbackRules) { this.cssPositionFallbackRules = cssPositionFallbackRules; } /** Id of the first parent element that does not have display: contents. */ public Integer getParentLayoutNodeId() { return parentLayoutNodeId; } /** Id of the first parent element that does not have display: contents. */ public void setParentLayoutNodeId(Integer parentLayoutNodeId) { this.parentLayoutNodeId = parentLayoutNodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/MediaQuery.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** Media query descriptor. */ public class MediaQuery { private List<MediaQueryExpression> expressions; private Boolean active; /** Array of media query expressions. */ public List<MediaQueryExpression> getExpressions() { return expressions; } /** Array of media query expressions. */ public void setExpressions(List<MediaQueryExpression> expressions) { this.expressions = expressions; } /** Whether the media query condition is satisfied. */ public Boolean getActive() { return active; } /** Whether the media query condition is satisfied. */ public void setActive(Boolean active) { this.active = active; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/MediaQueryExpression.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Media query expression descriptor. */ public class MediaQueryExpression { private Double value; private String unit; private String feature; @Optional private SourceRange valueRange; @Optional private Double computedLength; /** Media query expression value. */ public Double getValue() { return value; } /** Media query expression value. */ public void setValue(Double value) { this.value = value; } /** Media query expression units. */ public String getUnit() { return unit; } /** Media query expression units. */ public void setUnit(String unit) { this.unit = unit; } /** Media query expression feature. */ public String getFeature() { return feature; } /** Media query expression feature. */ public void setFeature(String feature) { this.feature = feature; } /** The associated range of the value text in the enclosing stylesheet (if available). */ public SourceRange getValueRange() { return valueRange; } /** The associated range of the value text in the enclosing stylesheet (if available). */ public void setValueRange(SourceRange valueRange) { this.valueRange = valueRange; } /** Computed length of media query expression (if applicable). */ public Double getComputedLength() { return computedLength; } /** Computed length of media query expression (if applicable). */ public void setComputedLength(Double computedLength) { this.computedLength = computedLength; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/PlatformFontUsage.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Information about amount of glyphs that were rendered with given font. */ public class PlatformFontUsage { private String familyName; private Boolean isCustomFont; private Double glyphCount; /** Font's family name reported by platform. */ public String getFamilyName() { return familyName; } /** Font's family name reported by platform. */ public void setFamilyName(String familyName) { this.familyName = familyName; } /** Indicates if the font was downloaded or resolved locally. */ public Boolean getIsCustomFont() { return isCustomFont; } /** Indicates if the font was downloaded or resolved locally. */ public void setIsCustomFont(Boolean isCustomFont) { this.isCustomFont = isCustomFont; } /** Amount of glyphs that were rendered with this font. */ public Double getGlyphCount() { return glyphCount; } /** Amount of glyphs that were rendered with this font. */ public void setGlyphCount(Double glyphCount) { this.glyphCount = glyphCount; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/PseudoElementMatches.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.dom.PseudoType; import java.util.List; /** CSS rule collection for a single pseudo style. */ public class PseudoElementMatches { private PseudoType pseudoType; @Optional private String pseudoIdentifier; private List<RuleMatch> matches; /** Pseudo element type. */ public PseudoType getPseudoType() { return pseudoType; } /** Pseudo element type. */ public void setPseudoType(PseudoType pseudoType) { this.pseudoType = pseudoType; } /** Pseudo element custom ident. */ public String getPseudoIdentifier() { return pseudoIdentifier; } /** Pseudo element custom ident. */ public void setPseudoIdentifier(String pseudoIdentifier) { this.pseudoIdentifier = pseudoIdentifier; } /** Matches of CSS rules applicable to the pseudo style. */ public List<RuleMatch> getMatches() { return matches; } /** Matches of CSS rules applicable to the pseudo style. */ public void setMatches(List<RuleMatch> matches) { this.matches = matches; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/RuleMatch.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** Match data for a CSS rule. */ public class RuleMatch { private CSSRule rule; private List<Integer> matchingSelectors; /** CSS rule in the match. */ public CSSRule getRule() { return rule; } /** CSS rule in the match. */ public void setRule(CSSRule rule) { this.rule = rule; } /** Matching selector indices in the rule's selectorList selectors (0-based). */ public List<Integer> getMatchingSelectors() { return matchingSelectors; } /** Matching selector indices in the rule's selectorList selectors (0-based). */ public void setMatchingSelectors(List<Integer> matchingSelectors) { this.matchingSelectors = matchingSelectors; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/RuleUsage.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** CSS coverage information. */ public class RuleUsage { private String styleSheetId; private Double startOffset; private Double endOffset; private Boolean used; /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public String getStyleSheetId() { return styleSheetId; } /** * The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet * rules) this rule came from. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** Offset of the start of the rule (including selector) from the beginning of the stylesheet. */ public Double getStartOffset() { return startOffset; } /** Offset of the start of the rule (including selector) from the beginning of the stylesheet. */ public void setStartOffset(Double startOffset) { this.startOffset = startOffset; } /** Offset of the end of the rule body from the beginning of the stylesheet. */ public Double getEndOffset() { return endOffset; } /** Offset of the end of the rule body from the beginning of the stylesheet. */ public void setEndOffset(Double endOffset) { this.endOffset = endOffset; } /** Indicates whether the rule was actually used by some element in the page. */ public Boolean getUsed() { return used; } /** Indicates whether the rule was actually used by some element in the page. */ public void setUsed(Boolean used) { this.used = used; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/SelectorList.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; /** Selector list data. */ public class SelectorList { private List<Value> selectors; private String text; /** Selectors in the list. */ public List<Value> getSelectors() { return selectors; } /** Selectors in the list. */ public void setSelectors(List<Value> selectors) { this.selectors = selectors; } /** Rule selector text. */ public String getText() { return text; } /** Rule selector text. */ public void setText(String text) { this.text = text; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/ShorthandEntry.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class ShorthandEntry { private String name; private String value; @Optional private Boolean important; /** Shorthand name. */ public String getName() { return name; } /** Shorthand name. */ public void setName(String name) { this.name = name; } /** Shorthand value. */ public String getValue() { return value; } /** Shorthand value. */ public void setValue(String value) { this.value = value; } /** Whether the property has "!important" annotation (implies `false` if absent). */ public Boolean getImportant() { return important; } /** Whether the property has "!important" annotation (implies `false` if absent). */ public void setImportant(Boolean important) { this.important = important; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/SourceRange.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Text range within a resource. All numbers are zero-based. */ public class SourceRange { private Integer startLine; private Integer startColumn; private Integer endLine; private Integer endColumn; /** Start line of range. */ public Integer getStartLine() { return startLine; } /** Start line of range. */ public void setStartLine(Integer startLine) { this.startLine = startLine; } /** Start column of range (inclusive). */ public Integer getStartColumn() { return startColumn; } /** Start column of range (inclusive). */ public void setStartColumn(Integer startColumn) { this.startColumn = startColumn; } /** End line of range */ public Integer getEndLine() { return endLine; } /** End line of range */ public void setEndLine(Integer endLine) { this.endLine = endLine; } /** End column of range (exclusive). */ public Integer getEndColumn() { return endColumn; } /** End column of range (exclusive). */ public void setEndColumn(Integer endColumn) { this.endColumn = endColumn; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/Specificity.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; /** Specificity: https://drafts.csswg.org/selectors/#specificity-rules */ @Experimental public class Specificity { private Integer a; private Integer b; private Integer c; /** The a component, which represents the number of ID selectors. */ public Integer getA() { return a; } /** The a component, which represents the number of ID selectors. */ public void setA(Integer a) { this.a = a; } /** * The b component, which represents the number of class selectors, attributes selectors, and * pseudo-classes. */ public Integer getB() { return b; } /** * The b component, which represents the number of class selectors, attributes selectors, and * pseudo-classes. */ public void setB(Integer b) { this.b = b; } /** The c component, which represents the number of type selectors and pseudo-elements. */ public Integer getC() { return c; } /** The c component, which represents the number of type selectors and pseudo-elements. */ public void setC(Integer c) { this.c = c; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/StyleDeclarationEdit.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** A descriptor of operation to mutate style declaration text. */ public class StyleDeclarationEdit { private String styleSheetId; private SourceRange range; private String text; /** The css style sheet identifier. */ public String getStyleSheetId() { return styleSheetId; } /** The css style sheet identifier. */ public void setStyleSheetId(String styleSheetId) { this.styleSheetId = styleSheetId; } /** The range of the style text in the enclosing stylesheet. */ public SourceRange getRange() { return range; } /** The range of the style text in the enclosing stylesheet. */ public void setRange(SourceRange range) { this.range = range; } /** New style text. */ public String getText() { return text; } /** New style text. */ public void setText(String text) { this.text = text; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/StyleSheetOrigin.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Stylesheet type: "injected" for stylesheets injected via extension, "user-agent" for user-agent * stylesheets, "inspector" for stylesheets created by the inspector (i.e. those holding the "via * inspector" rules), "regular" for regular stylesheets. */ public enum StyleSheetOrigin { @JsonProperty("injected") INJECTED, @JsonProperty("user-agent") USER_AGENT, @JsonProperty("inspector") INSPECTOR, @JsonProperty("regular") REGULAR }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/TakeCoverageDelta.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; public class TakeCoverageDelta { private List<RuleUsage> coverage; private Double timestamp; public List<RuleUsage> getCoverage() { return coverage; } public void setCoverage(List<RuleUsage> coverage) { this.coverage = coverage; } /** Monotonically increasing time, in seconds. */ public Double getTimestamp() { return timestamp; } /** Monotonically increasing time, in seconds. */ public void setTimestamp(Double timestamp) { this.timestamp = timestamp; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/css/Value.java
package com.github.kklisura.cdt.protocol.v2023.types.css; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Data for a simple selector (these are delimited by commas in a selector list). */ public class Value { private String text; @Optional private SourceRange range; @Experimental @Optional private Specificity specificity; /** Value text. */ public String getText() { return text; } /** Value text. */ public void setText(String text) { this.text = text; } /** Value range in the underlying resource (if available). */ public SourceRange getRange() { return range; } /** Value range in the underlying resource (if available). */ public void setRange(SourceRange range) { this.range = range; } /** Specificity of the selector. */ public Specificity getSpecificity() { return specificity; } /** Specificity of the selector. */ public void setSpecificity(Specificity specificity) { this.specificity = specificity; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/database/Database.java
package com.github.kklisura.cdt.protocol.v2023.types.database; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Database object. */ public class Database { private String id; private String domain; private String name; private String version; /** Database ID. */ public String getId() { return id; } /** Database ID. */ public void setId(String id) { this.id = id; } /** Database domain. */ public String getDomain() { return domain; } /** Database domain. */ public void setDomain(String domain) { this.domain = domain; } /** Database name. */ public String getName() { return name; } /** Database name. */ public void setName(String name) { this.name = name; } /** Database version. */ public String getVersion() { return version; } /** Database version. */ public void setVersion(String version) { this.version = version; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/database/Error.java
package com.github.kklisura.cdt.protocol.v2023.types.database; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Database error. */ public class Error { private String message; private Integer code; /** Error message. */ public String getMessage() { return message; } /** Error message. */ public void setMessage(String message) { this.message = message; } /** Error code. */ public Integer getCode() { return code; } /** Error code. */ public void setCode(Integer code) { this.code = code; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/database/ExecuteSQL.java
package com.github.kklisura.cdt.protocol.v2023.types.database; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; public class ExecuteSQL { @Optional private List<String> columnNames; @Optional private List<Object> values; @Optional private Error sqlError; public List<String> getColumnNames() { return columnNames; } public void setColumnNames(List<String> columnNames) { this.columnNames = columnNames; } public List<Object> getValues() { return values; } public void setValues(List<Object> values) { this.values = values; } public Error getSqlError() { return sqlError; } public void setSqlError(Error sqlError) { this.sqlError = sqlError; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/BreakLocation.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class BreakLocation { private String scriptId; private Integer lineNumber; @Optional private Integer columnNumber; @Optional private BreakLocationType type; /** Script identifier as reported in the `Debugger.scriptParsed`. */ public String getScriptId() { return scriptId; } /** Script identifier as reported in the `Debugger.scriptParsed`. */ public void setScriptId(String scriptId) { this.scriptId = scriptId; } /** Line number in the script (0-based). */ public Integer getLineNumber() { return lineNumber; } /** Line number in the script (0-based). */ public void setLineNumber(Integer lineNumber) { this.lineNumber = lineNumber; } /** Column number in the script (0-based). */ public Integer getColumnNumber() { return columnNumber; } /** Column number in the script (0-based). */ public void setColumnNumber(Integer columnNumber) { this.columnNumber = columnNumber; } public BreakLocationType getType() { return type; } public void setType(BreakLocationType type) { this.type = type; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/BreakLocationType.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum BreakLocationType { @JsonProperty("debuggerStatement") DEBUGGER_STATEMENT, @JsonProperty("call") CALL, @JsonProperty("return") RETURN }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/CallFrame.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.runtime.RemoteObject; import java.util.List; /** JavaScript call frame. Array of call frames form the call stack. */ public class CallFrame { private String callFrameId; private String functionName; @Optional private Location functionLocation; private Location location; @Deprecated private String url; private List<Scope> scopeChain; private RemoteObject that; @Optional private RemoteObject returnValue; @Experimental @Optional private Boolean canBeRestarted; /** Call frame identifier. This identifier is only valid while the virtual machine is paused. */ public String getCallFrameId() { return callFrameId; } /** Call frame identifier. This identifier is only valid while the virtual machine is paused. */ public void setCallFrameId(String callFrameId) { this.callFrameId = callFrameId; } /** Name of the JavaScript function called on this call frame. */ public String getFunctionName() { return functionName; } /** Name of the JavaScript function called on this call frame. */ public void setFunctionName(String functionName) { this.functionName = functionName; } /** Location in the source code. */ public Location getFunctionLocation() { return functionLocation; } /** Location in the source code. */ public void setFunctionLocation(Location functionLocation) { this.functionLocation = functionLocation; } /** Location in the source code. */ public Location getLocation() { return location; } /** Location in the source code. */ public void setLocation(Location location) { this.location = location; } /** * JavaScript script name or url. Deprecated in favor of using the `location.scriptId` to resolve * the URL via a previously sent `Debugger.scriptParsed` event. */ public String getUrl() { return url; } /** * JavaScript script name or url. Deprecated in favor of using the `location.scriptId` to resolve * the URL via a previously sent `Debugger.scriptParsed` event. */ public void setUrl(String url) { this.url = url; } /** Scope chain for this call frame. */ public List<Scope> getScopeChain() { return scopeChain; } /** Scope chain for this call frame. */ public void setScopeChain(List<Scope> scopeChain) { this.scopeChain = scopeChain; } /** `this` object for this call frame. */ public RemoteObject getThat() { return that; } /** `this` object for this call frame. */ public void setThat(RemoteObject that) { this.that = that; } /** The value being returned, if the function is at return point. */ public RemoteObject getReturnValue() { return returnValue; } /** The value being returned, if the function is at return point. */ public void setReturnValue(RemoteObject returnValue) { this.returnValue = returnValue; } /** * Valid only while the VM is paused and indicates whether this frame can be restarted or not. * Note that a `true` value here does not guarantee that Debugger#restartFrame with this * CallFrameId will be successful, but it is very likely. */ public Boolean getCanBeRestarted() { return canBeRestarted; } /** * Valid only while the VM is paused and indicates whether this frame can be restarted or not. * Note that a `true` value here does not guarantee that Debugger#restartFrame with this * CallFrameId will be successful, but it is very likely. */ public void setCanBeRestarted(Boolean canBeRestarted) { this.canBeRestarted = canBeRestarted; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/ContinueToLocationTargetCallFrames.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum ContinueToLocationTargetCallFrames { @JsonProperty("any") ANY, @JsonProperty("current") CURRENT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/DebugSymbols.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Debug symbols available for a wasm script. */ public class DebugSymbols { private DebugSymbolsType type; @Optional private String externalURL; /** Type of the debug symbols. */ public DebugSymbolsType getType() { return type; } /** Type of the debug symbols. */ public void setType(DebugSymbolsType type) { this.type = type; } /** URL of the external symbol source. */ public String getExternalURL() { return externalURL; } /** URL of the external symbol source. */ public void setExternalURL(String externalURL) { this.externalURL = externalURL; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/DebugSymbolsType.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Type of the debug symbols. */ public enum DebugSymbolsType { @JsonProperty("None") NONE, @JsonProperty("SourceMap") SOURCE_MAP, @JsonProperty("EmbeddedDWARF") EMBEDDED_DWARF, @JsonProperty("ExternalDWARF") EXTERNAL_DWARF }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/DisassembleWasmModule.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; public class DisassembleWasmModule { @Optional private String streamId; private Integer totalNumberOfLines; private List<Integer> functionBodyOffsets; private WasmDisassemblyChunk chunk; /** * For large modules, return a stream from which additional chunks of disassembly can be read * successively. */ public String getStreamId() { return streamId; } /** * For large modules, return a stream from which additional chunks of disassembly can be read * successively. */ public void setStreamId(String streamId) { this.streamId = streamId; } /** The total number of lines in the disassembly text. */ public Integer getTotalNumberOfLines() { return totalNumberOfLines; } /** The total number of lines in the disassembly text. */ public void setTotalNumberOfLines(Integer totalNumberOfLines) { this.totalNumberOfLines = totalNumberOfLines; } /** * The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all * ends are exclusive. */ public List<Integer> getFunctionBodyOffsets() { return functionBodyOffsets; } /** * The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all * ends are exclusive. */ public void setFunctionBodyOffsets(List<Integer> functionBodyOffsets) { this.functionBodyOffsets = functionBodyOffsets; } /** The first chunk of disassembly. */ public WasmDisassemblyChunk getChunk() { return chunk; } /** The first chunk of disassembly. */ public void setChunk(WasmDisassemblyChunk chunk) { this.chunk = chunk; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/EvaluateOnCallFrame.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.runtime.ExceptionDetails; import com.github.kklisura.cdt.protocol.v2023.types.runtime.RemoteObject; public class EvaluateOnCallFrame { private RemoteObject result; @Optional private ExceptionDetails exceptionDetails; /** Object wrapper for the evaluation result. */ public RemoteObject getResult() { return result; } /** Object wrapper for the evaluation result. */ public void setResult(RemoteObject result) { this.result = result; } /** Exception details. */ public ExceptionDetails getExceptionDetails() { return exceptionDetails; } /** Exception details. */ public void setExceptionDetails(ExceptionDetails exceptionDetails) { this.exceptionDetails = exceptionDetails; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/Location.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Location in the source code. */ public class Location { private String scriptId; private Integer lineNumber; @Optional private Integer columnNumber; /** Script identifier as reported in the `Debugger.scriptParsed`. */ public String getScriptId() { return scriptId; } /** Script identifier as reported in the `Debugger.scriptParsed`. */ public void setScriptId(String scriptId) { this.scriptId = scriptId; } /** Line number in the script (0-based). */ public Integer getLineNumber() { return lineNumber; } /** Line number in the script (0-based). */ public void setLineNumber(Integer lineNumber) { this.lineNumber = lineNumber; } /** Column number in the script (0-based). */ public Integer getColumnNumber() { return columnNumber; } /** Column number in the script (0-based). */ public void setColumnNumber(Integer columnNumber) { this.columnNumber = columnNumber; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/LocationRange.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; /** Location range within one script. */ @Experimental public class LocationRange { private String scriptId; private ScriptPosition start; private ScriptPosition end; public String getScriptId() { return scriptId; } public void setScriptId(String scriptId) { this.scriptId = scriptId; } public ScriptPosition getStart() { return start; } public void setStart(ScriptPosition start) { this.start = start; } public ScriptPosition getEnd() { return end; } public void setEnd(ScriptPosition end) { this.end = end; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/RestartFrame.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.runtime.StackTrace; import com.github.kklisura.cdt.protocol.v2023.types.runtime.StackTraceId; import java.util.List; public class RestartFrame { @Deprecated private List<CallFrame> callFrames; @Deprecated @Optional private StackTrace asyncStackTrace; @Deprecated @Optional private StackTraceId asyncStackTraceId; /** New stack trace. */ public List<CallFrame> getCallFrames() { return callFrames; } /** New stack trace. */ public void setCallFrames(List<CallFrame> callFrames) { this.callFrames = callFrames; } /** Async stack trace, if any. */ public StackTrace getAsyncStackTrace() { return asyncStackTrace; } /** Async stack trace, if any. */ public void setAsyncStackTrace(StackTrace asyncStackTrace) { this.asyncStackTrace = asyncStackTrace; } /** Async stack trace, if any. */ public StackTraceId getAsyncStackTraceId() { return asyncStackTraceId; } /** Async stack trace, if any. */ public void setAsyncStackTraceId(StackTraceId asyncStackTraceId) { this.asyncStackTraceId = asyncStackTraceId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/RestartFrameMode.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * The `mode` parameter must be present and set to 'StepInto', otherwise `restartFrame` will error * out. */ public enum RestartFrameMode { @JsonProperty("StepInto") STEP_INTO }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/Scope.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.runtime.RemoteObject; /** Scope description. */ public class Scope { private ScopeType type; private RemoteObject object; @Optional private String name; @Optional private Location startLocation; @Optional private Location endLocation; /** Scope type. */ public ScopeType getType() { return type; } /** Scope type. */ public void setType(ScopeType type) { this.type = type; } /** * Object representing the scope. For `global` and `with` scopes it represents the actual object; * for the rest of the scopes, it is artificial transient object enumerating scope variables as * its properties. */ public RemoteObject getObject() { return object; } /** * Object representing the scope. For `global` and `with` scopes it represents the actual object; * for the rest of the scopes, it is artificial transient object enumerating scope variables as * its properties. */ public void setObject(RemoteObject object) { this.object = object; } public String getName() { return name; } public void setName(String name) { this.name = name; } /** Location in the source code where scope starts */ public Location getStartLocation() { return startLocation; } /** Location in the source code where scope starts */ public void setStartLocation(Location startLocation) { this.startLocation = startLocation; } /** Location in the source code where scope ends */ public Location getEndLocation() { return endLocation; } /** Location in the source code where scope ends */ public void setEndLocation(Location endLocation) { this.endLocation = endLocation; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/ScopeType.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Scope type. */ public enum ScopeType { @JsonProperty("global") GLOBAL, @JsonProperty("local") LOCAL, @JsonProperty("with") WITH, @JsonProperty("closure") CLOSURE, @JsonProperty("catch") CATCH, @JsonProperty("block") BLOCK, @JsonProperty("script") SCRIPT, @JsonProperty("eval") EVAL, @JsonProperty("module") MODULE, @JsonProperty("wasm-expression-stack") WASM_EXPRESSION_STACK }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/ScriptLanguage.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Enum of possible script languages. */ public enum ScriptLanguage { @JsonProperty("JavaScript") JAVA_SCRIPT, @JsonProperty("WebAssembly") WEB_ASSEMBLY }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/ScriptPosition.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; /** Location in the source code. */ @Experimental public class ScriptPosition { private Integer lineNumber; private Integer columnNumber; public Integer getLineNumber() { return lineNumber; } public void setLineNumber(Integer lineNumber) { this.lineNumber = lineNumber; } public Integer getColumnNumber() { return columnNumber; } public void setColumnNumber(Integer columnNumber) { this.columnNumber = columnNumber; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/ScriptSource.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class ScriptSource { private String scriptSource; @Optional private String bytecode; /** Script source (empty in case of Wasm bytecode). */ public String getScriptSource() { return scriptSource; } /** Script source (empty in case of Wasm bytecode). */ public void setScriptSource(String scriptSource) { this.scriptSource = scriptSource; } /** Wasm bytecode. (Encoded as a base64 string when passed over JSON) */ public String getBytecode() { return bytecode; } /** Wasm bytecode. (Encoded as a base64 string when passed over JSON) */ public void setBytecode(String bytecode) { this.bytecode = bytecode; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SearchMatch.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Search match for resource. */ public class SearchMatch { private Double lineNumber; private String lineContent; /** Line number in resource content. */ public Double getLineNumber() { return lineNumber; } /** Line number in resource content. */ public void setLineNumber(Double lineNumber) { this.lineNumber = lineNumber; } /** Line with match content. */ public String getLineContent() { return lineContent; } /** Line with match content. */ public void setLineContent(String lineContent) { this.lineContent = lineContent; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetBreakpoint.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class SetBreakpoint { private String breakpointId; private Location actualLocation; /** Id of the created breakpoint for further reference. */ public String getBreakpointId() { return breakpointId; } /** Id of the created breakpoint for further reference. */ public void setBreakpointId(String breakpointId) { this.breakpointId = breakpointId; } /** Location this breakpoint resolved into. */ public Location getActualLocation() { return actualLocation; } /** Location this breakpoint resolved into. */ public void setActualLocation(Location actualLocation) { this.actualLocation = actualLocation; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetBreakpointByUrl.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import java.util.List; public class SetBreakpointByUrl { private String breakpointId; private List<Location> locations; /** Id of the created breakpoint for further reference. */ public String getBreakpointId() { return breakpointId; } /** Id of the created breakpoint for further reference. */ public void setBreakpointId(String breakpointId) { this.breakpointId = breakpointId; } /** List of the locations this breakpoint resolved into upon addition. */ public List<Location> getLocations() { return locations; } /** List of the locations this breakpoint resolved into upon addition. */ public void setLocations(List<Location> locations) { this.locations = locations; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetInstrumentationBreakpointInstrumentation.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Instrumentation name. */ public enum SetInstrumentationBreakpointInstrumentation { @JsonProperty("beforeScriptExecution") BEFORE_SCRIPT_EXECUTION, @JsonProperty("beforeScriptWithSourceMapExecution") BEFORE_SCRIPT_WITH_SOURCE_MAP_EXECUTION }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetPauseOnExceptionsState.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Pause on exceptions mode. */ public enum SetPauseOnExceptionsState { @JsonProperty("none") NONE, @JsonProperty("caught") CAUGHT, @JsonProperty("uncaught") UNCAUGHT, @JsonProperty("all") ALL }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetScriptSource.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.runtime.ExceptionDetails; import com.github.kklisura.cdt.protocol.v2023.types.runtime.StackTrace; import com.github.kklisura.cdt.protocol.v2023.types.runtime.StackTraceId; import java.util.List; public class SetScriptSource { @Deprecated @Optional private List<CallFrame> callFrames; @Deprecated @Optional private Boolean stackChanged; @Deprecated @Optional private StackTrace asyncStackTrace; @Deprecated @Optional private StackTraceId asyncStackTraceId; @Experimental private SetScriptSourceStatus status; @Optional private ExceptionDetails exceptionDetails; /** New stack trace in case editing has happened while VM was stopped. */ public List<CallFrame> getCallFrames() { return callFrames; } /** New stack trace in case editing has happened while VM was stopped. */ public void setCallFrames(List<CallFrame> callFrames) { this.callFrames = callFrames; } /** Whether current call stack was modified after applying the changes. */ public Boolean getStackChanged() { return stackChanged; } /** Whether current call stack was modified after applying the changes. */ public void setStackChanged(Boolean stackChanged) { this.stackChanged = stackChanged; } /** Async stack trace, if any. */ public StackTrace getAsyncStackTrace() { return asyncStackTrace; } /** Async stack trace, if any. */ public void setAsyncStackTrace(StackTrace asyncStackTrace) { this.asyncStackTrace = asyncStackTrace; } /** Async stack trace, if any. */ public StackTraceId getAsyncStackTraceId() { return asyncStackTraceId; } /** Async stack trace, if any. */ public void setAsyncStackTraceId(StackTraceId asyncStackTraceId) { this.asyncStackTraceId = asyncStackTraceId; } /** * Whether the operation was successful or not. Only `Ok` denotes a successful live edit while the * other enum variants denote why the live edit failed. */ public SetScriptSourceStatus getStatus() { return status; } /** * Whether the operation was successful or not. Only `Ok` denotes a successful live edit while the * other enum variants denote why the live edit failed. */ public void setStatus(SetScriptSourceStatus status) { this.status = status; } /** Exception details if any. Only present when `status` is `CompileError`. */ public ExceptionDetails getExceptionDetails() { return exceptionDetails; } /** Exception details if any. Only present when `status` is `CompileError`. */ public void setExceptionDetails(ExceptionDetails exceptionDetails) { this.exceptionDetails = exceptionDetails; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/SetScriptSourceStatus.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Whether the operation was successful or not. Only `Ok` denotes a successful live edit while the * other enum variants denote why the live edit failed. */ public enum SetScriptSourceStatus { @JsonProperty("Ok") OK, @JsonProperty("CompileError") COMPILE_ERROR, @JsonProperty("BlockedByActiveGenerator") BLOCKED_BY_ACTIVE_GENERATOR, @JsonProperty("BlockedByActiveFunction") BLOCKED_BY_ACTIVE_FUNCTION, @JsonProperty("BlockedByTopLevelEsModuleChange") BLOCKED_BY_TOP_LEVEL_ES_MODULE_CHANGE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/debugger/WasmDisassemblyChunk.java
package com.github.kklisura.cdt.protocol.v2023.types.debugger; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import java.util.List; @Experimental public class WasmDisassemblyChunk { private List<String> lines; private List<Integer> bytecodeOffsets; /** The next chunk of disassembled lines. */ public List<String> getLines() { return lines; } /** The next chunk of disassembled lines. */ public void setLines(List<String> lines) { this.lines = lines; } /** The bytecode offsets describing the start of each line. */ public List<Integer> getBytecodeOffsets() { return bytecodeOffsets; } /** The bytecode offsets describing the start of each line. */ public void setBytecodeOffsets(List<Integer> bytecodeOffsets) { this.bytecodeOffsets = bytecodeOffsets; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/deviceaccess/PromptDevice.java
package com.github.kklisura.cdt.protocol.v2023.types.deviceaccess; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Device information displayed in a user prompt to select a device. */ public class PromptDevice { private String id; private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } /** Display name as it appears in a device request user prompt. */ public String getName() { return name; } /** Display name as it appears in a device request user prompt. */ public void setName(String name) { this.name = name; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/BackendNode.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Backend node with a friendly name. */ public class BackendNode { private Integer nodeType; private String nodeName; private Integer backendNodeId; /** `Node`'s nodeType. */ public Integer getNodeType() { return nodeType; } /** `Node`'s nodeType. */ public void setNodeType(Integer nodeType) { this.nodeType = nodeType; } /** `Node`'s nodeName. */ public String getNodeName() { return nodeName; } /** `Node`'s nodeName. */ public void setNodeName(String nodeName) { this.nodeName = nodeName; } public Integer getBackendNodeId() { return backendNodeId; } public void setBackendNodeId(Integer backendNodeId) { this.backendNodeId = backendNodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/BoxModel.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** Box model. */ public class BoxModel { private List<Double> content; private List<Double> padding; private List<Double> border; private List<Double> margin; private Integer width; private Integer height; @Optional private ShapeOutsideInfo shapeOutside; /** Content box */ public List<Double> getContent() { return content; } /** Content box */ public void setContent(List<Double> content) { this.content = content; } /** Padding box */ public List<Double> getPadding() { return padding; } /** Padding box */ public void setPadding(List<Double> padding) { this.padding = padding; } /** Border box */ public List<Double> getBorder() { return border; } /** Border box */ public void setBorder(List<Double> border) { this.border = border; } /** Margin box */ public List<Double> getMargin() { return margin; } /** Margin box */ public void setMargin(List<Double> margin) { this.margin = margin; } /** Node width */ public Integer getWidth() { return width; } /** Node width */ public void setWidth(Integer width) { this.width = width; } /** Node height */ public Integer getHeight() { return height; } /** Node height */ public void setHeight(Integer height) { this.height = height; } /** Shape outside coordinates */ public ShapeOutsideInfo getShapeOutside() { return shapeOutside; } /** Shape outside coordinates */ public void setShapeOutside(ShapeOutsideInfo shapeOutside) { this.shapeOutside = shapeOutside; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/CSSComputedStyleProperty.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class CSSComputedStyleProperty { private String name; private String value; /** Computed style property name. */ public String getName() { return name; } /** Computed style property name. */ public void setName(String name) { this.name = name; } /** Computed style property value. */ public String getValue() { return value; } /** Computed style property value. */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/CompatibilityMode.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Document compatibility mode. */ public enum CompatibilityMode { @JsonProperty("QuirksMode") QUIRKS_MODE, @JsonProperty("LimitedQuirksMode") LIMITED_QUIRKS_MODE, @JsonProperty("NoQuirksMode") NO_QUIRKS_MODE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/EnableIncludeWhitespace.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Whether to include whitespaces in the children array of returned Nodes. */ public enum EnableIncludeWhitespace { @JsonProperty("none") NONE, @JsonProperty("all") ALL }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/FrameOwner.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class FrameOwner { private Integer backendNodeId; @Optional private Integer nodeId; /** Resulting node. */ public Integer getBackendNodeId() { return backendNodeId; } /** Resulting node. */ public void setBackendNodeId(Integer backendNodeId) { this.backendNodeId = backendNodeId; } /** Id of the node at given coordinates, only when enabled and requested document. */ public Integer getNodeId() { return nodeId; } /** Id of the node at given coordinates, only when enabled and requested document. */ public void setNodeId(Integer nodeId) { this.nodeId = nodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/LogicalAxes.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** ContainerSelector logical axes */ public enum LogicalAxes { @JsonProperty("Inline") INLINE, @JsonProperty("Block") BLOCK, @JsonProperty("Both") BOTH }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/Node.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** * DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. * DOMNode is a base node mirror type. */ public class Node { private Integer nodeId; @Optional private Integer parentId; private Integer backendNodeId; private Integer nodeType; private String nodeName; private String localName; private String nodeValue; @Optional private Integer childNodeCount; @Optional private List<Node> children; @Optional private List<String> attributes; @Optional private String documentURL; @Optional private String baseURL; @Optional private String publicId; @Optional private String systemId; @Optional private String internalSubset; @Optional private String xmlVersion; @Optional private String name; @Optional private String value; @Optional private PseudoType pseudoType; @Optional private String pseudoIdentifier; @Optional private ShadowRootType shadowRootType; @Optional private String frameId; @Optional private Node contentDocument; @Optional private List<Node> shadowRoots; @Optional private Node templateContent; @Optional private List<Node> pseudoElements; @Deprecated @Optional private Node importedDocument; @Optional private List<BackendNode> distributedNodes; @Optional private Boolean isSVG; @Optional private CompatibilityMode compatibilityMode; @Optional private BackendNode assignedSlot; /** * Node identifier that is passed into the rest of the DOM messages as the `nodeId`. Backend will * only push node with given `id` once. It is aware of all requested nodes and will only fire DOM * events for nodes known to the client. */ public Integer getNodeId() { return nodeId; } /** * Node identifier that is passed into the rest of the DOM messages as the `nodeId`. Backend will * only push node with given `id` once. It is aware of all requested nodes and will only fire DOM * events for nodes known to the client. */ public void setNodeId(Integer nodeId) { this.nodeId = nodeId; } /** The id of the parent node if any. */ public Integer getParentId() { return parentId; } /** The id of the parent node if any. */ public void setParentId(Integer parentId) { this.parentId = parentId; } /** The BackendNodeId for this node. */ public Integer getBackendNodeId() { return backendNodeId; } /** The BackendNodeId for this node. */ public void setBackendNodeId(Integer backendNodeId) { this.backendNodeId = backendNodeId; } /** `Node`'s nodeType. */ public Integer getNodeType() { return nodeType; } /** `Node`'s nodeType. */ public void setNodeType(Integer nodeType) { this.nodeType = nodeType; } /** `Node`'s nodeName. */ public String getNodeName() { return nodeName; } /** `Node`'s nodeName. */ public void setNodeName(String nodeName) { this.nodeName = nodeName; } /** `Node`'s localName. */ public String getLocalName() { return localName; } /** `Node`'s localName. */ public void setLocalName(String localName) { this.localName = localName; } /** `Node`'s nodeValue. */ public String getNodeValue() { return nodeValue; } /** `Node`'s nodeValue. */ public void setNodeValue(String nodeValue) { this.nodeValue = nodeValue; } /** Child count for `Container` nodes. */ public Integer getChildNodeCount() { return childNodeCount; } /** Child count for `Container` nodes. */ public void setChildNodeCount(Integer childNodeCount) { this.childNodeCount = childNodeCount; } /** Child nodes of this node when requested with children. */ public List<Node> getChildren() { return children; } /** Child nodes of this node when requested with children. */ public void setChildren(List<Node> children) { this.children = children; } /** * Attributes of the `Element` node in the form of flat array `[name1, value1, name2, value2]`. */ public List<String> getAttributes() { return attributes; } /** * Attributes of the `Element` node in the form of flat array `[name1, value1, name2, value2]`. */ public void setAttributes(List<String> attributes) { this.attributes = attributes; } /** Document URL that `Document` or `FrameOwner` node points to. */ public String getDocumentURL() { return documentURL; } /** Document URL that `Document` or `FrameOwner` node points to. */ public void setDocumentURL(String documentURL) { this.documentURL = documentURL; } /** Base URL that `Document` or `FrameOwner` node uses for URL completion. */ public String getBaseURL() { return baseURL; } /** Base URL that `Document` or `FrameOwner` node uses for URL completion. */ public void setBaseURL(String baseURL) { this.baseURL = baseURL; } /** `DocumentType`'s publicId. */ public String getPublicId() { return publicId; } /** `DocumentType`'s publicId. */ public void setPublicId(String publicId) { this.publicId = publicId; } /** `DocumentType`'s systemId. */ public String getSystemId() { return systemId; } /** `DocumentType`'s systemId. */ public void setSystemId(String systemId) { this.systemId = systemId; } /** `DocumentType`'s internalSubset. */ public String getInternalSubset() { return internalSubset; } /** `DocumentType`'s internalSubset. */ public void setInternalSubset(String internalSubset) { this.internalSubset = internalSubset; } /** `Document`'s XML version in case of XML documents. */ public String getXmlVersion() { return xmlVersion; } /** `Document`'s XML version in case of XML documents. */ public void setXmlVersion(String xmlVersion) { this.xmlVersion = xmlVersion; } /** `Attr`'s name. */ public String getName() { return name; } /** `Attr`'s name. */ public void setName(String name) { this.name = name; } /** `Attr`'s value. */ public String getValue() { return value; } /** `Attr`'s value. */ public void setValue(String value) { this.value = value; } /** Pseudo element type for this node. */ public PseudoType getPseudoType() { return pseudoType; } /** Pseudo element type for this node. */ public void setPseudoType(PseudoType pseudoType) { this.pseudoType = pseudoType; } /** Pseudo element identifier for this node. Only present if there is a valid pseudoType. */ public String getPseudoIdentifier() { return pseudoIdentifier; } /** Pseudo element identifier for this node. Only present if there is a valid pseudoType. */ public void setPseudoIdentifier(String pseudoIdentifier) { this.pseudoIdentifier = pseudoIdentifier; } /** Shadow root type. */ public ShadowRootType getShadowRootType() { return shadowRootType; } /** Shadow root type. */ public void setShadowRootType(ShadowRootType shadowRootType) { this.shadowRootType = shadowRootType; } /** Frame ID for frame owner elements. */ public String getFrameId() { return frameId; } /** Frame ID for frame owner elements. */ public void setFrameId(String frameId) { this.frameId = frameId; } /** Content document for frame owner elements. */ public Node getContentDocument() { return contentDocument; } /** Content document for frame owner elements. */ public void setContentDocument(Node contentDocument) { this.contentDocument = contentDocument; } /** Shadow root list for given element host. */ public List<Node> getShadowRoots() { return shadowRoots; } /** Shadow root list for given element host. */ public void setShadowRoots(List<Node> shadowRoots) { this.shadowRoots = shadowRoots; } /** Content document fragment for template elements. */ public Node getTemplateContent() { return templateContent; } /** Content document fragment for template elements. */ public void setTemplateContent(Node templateContent) { this.templateContent = templateContent; } /** Pseudo elements associated with this node. */ public List<Node> getPseudoElements() { return pseudoElements; } /** Pseudo elements associated with this node. */ public void setPseudoElements(List<Node> pseudoElements) { this.pseudoElements = pseudoElements; } /** * Deprecated, as the HTML Imports API has been removed (crbug.com/937746). This property used to * return the imported document for the HTMLImport links. The property is always undefined now. */ public Node getImportedDocument() { return importedDocument; } /** * Deprecated, as the HTML Imports API has been removed (crbug.com/937746). This property used to * return the imported document for the HTMLImport links. The property is always undefined now. */ public void setImportedDocument(Node importedDocument) { this.importedDocument = importedDocument; } /** Distributed nodes for given insertion point. */ public List<BackendNode> getDistributedNodes() { return distributedNodes; } /** Distributed nodes for given insertion point. */ public void setDistributedNodes(List<BackendNode> distributedNodes) { this.distributedNodes = distributedNodes; } /** Whether the node is SVG. */ public Boolean getIsSVG() { return isSVG; } /** Whether the node is SVG. */ public void setIsSVG(Boolean isSVG) { this.isSVG = isSVG; } public CompatibilityMode getCompatibilityMode() { return compatibilityMode; } public void setCompatibilityMode(CompatibilityMode compatibilityMode) { this.compatibilityMode = compatibilityMode; } public BackendNode getAssignedSlot() { return assignedSlot; } public void setAssignedSlot(BackendNode assignedSlot) { this.assignedSlot = assignedSlot; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/NodeForLocation.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class NodeForLocation { private Integer backendNodeId; private String frameId; @Optional private Integer nodeId; /** Resulting node. */ public Integer getBackendNodeId() { return backendNodeId; } /** Resulting node. */ public void setBackendNodeId(Integer backendNodeId) { this.backendNodeId = backendNodeId; } /** Frame this node belongs to. */ public String getFrameId() { return frameId; } /** Frame this node belongs to. */ public void setFrameId(String frameId) { this.frameId = frameId; } /** Id of the node at given coordinates, only when enabled and requested document. */ public Integer getNodeId() { return nodeId; } /** Id of the node at given coordinates, only when enabled and requested document. */ public void setNodeId(Integer nodeId) { this.nodeId = nodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/PerformSearch.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ public class PerformSearch { private String searchId; private Integer resultCount; /** Unique search session identifier. */ public String getSearchId() { return searchId; } /** Unique search session identifier. */ public void setSearchId(String searchId) { this.searchId = searchId; } /** Number of search results. */ public Integer getResultCount() { return resultCount; } /** Number of search results. */ public void setResultCount(Integer resultCount) { this.resultCount = resultCount; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/PhysicalAxes.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** ContainerSelector physical axes */ public enum PhysicalAxes { @JsonProperty("Horizontal") HORIZONTAL, @JsonProperty("Vertical") VERTICAL, @JsonProperty("Both") BOTH }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/PseudoType.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Pseudo element type. */ public enum PseudoType { @JsonProperty("first-line") FIRST_LINE, @JsonProperty("first-letter") FIRST_LETTER, @JsonProperty("before") BEFORE, @JsonProperty("after") AFTER, @JsonProperty("marker") MARKER, @JsonProperty("backdrop") BACKDROP, @JsonProperty("selection") SELECTION, @JsonProperty("target-text") TARGET_TEXT, @JsonProperty("spelling-error") SPELLING_ERROR, @JsonProperty("grammar-error") GRAMMAR_ERROR, @JsonProperty("highlight") HIGHLIGHT, @JsonProperty("first-line-inherited") FIRST_LINE_INHERITED, @JsonProperty("scrollbar") SCROLLBAR, @JsonProperty("scrollbar-thumb") SCROLLBAR_THUMB, @JsonProperty("scrollbar-button") SCROLLBAR_BUTTON, @JsonProperty("scrollbar-track") SCROLLBAR_TRACK, @JsonProperty("scrollbar-track-piece") SCROLLBAR_TRACK_PIECE, @JsonProperty("scrollbar-corner") SCROLLBAR_CORNER, @JsonProperty("resizer") RESIZER, @JsonProperty("input-list-button") INPUT_LIST_BUTTON, @JsonProperty("view-transition") VIEW_TRANSITION, @JsonProperty("view-transition-group") VIEW_TRANSITION_GROUP, @JsonProperty("view-transition-image-pair") VIEW_TRANSITION_IMAGE_PAIR, @JsonProperty("view-transition-old") VIEW_TRANSITION_OLD, @JsonProperty("view-transition-new") VIEW_TRANSITION_NEW }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/RGBA.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** A structure holding an RGBA color. */ public class RGBA { private Integer r; private Integer g; private Integer b; @Optional private Double a; /** The red component, in the [0-255] range. */ public Integer getR() { return r; } /** The red component, in the [0-255] range. */ public void setR(Integer r) { this.r = r; } /** The green component, in the [0-255] range. */ public Integer getG() { return g; } /** The green component, in the [0-255] range. */ public void setG(Integer g) { this.g = g; } /** The blue component, in the [0-255] range. */ public Integer getB() { return b; } /** The blue component, in the [0-255] range. */ public void setB(Integer b) { this.b = b; } /** The alpha component, in the [0-1] range (default: 1). */ public Double getA() { return a; } /** The alpha component, in the [0-1] range (default: 1). */ public void setA(Double a) { this.a = a; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/Rect.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ /** Rectangle. */ public class Rect { private Double x; private Double y; private Double width; private Double height; /** X coordinate */ public Double getX() { return x; } /** X coordinate */ public void setX(Double x) { this.x = x; } /** Y coordinate */ public Double getY() { return y; } /** Y coordinate */ public void setY(Double y) { this.y = y; } /** Rectangle width */ public Double getWidth() { return width; } /** Rectangle width */ public void setWidth(Double width) { this.width = width; } /** Rectangle height */ public Double getHeight() { return height; } /** Rectangle height */ public void setHeight(Double height) { this.height = height; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/dom/ShadowRootType.java
package com.github.kklisura.cdt.protocol.v2023.types.dom; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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 * * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Shadow root type. */ public enum ShadowRootType { @JsonProperty("user-agent") USER_AGENT, @JsonProperty("open") OPEN, @JsonProperty("closed") CLOSED }