FvctxNodeFrameRequestExtractor.java
3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.scene7.is.catalog.util.localization.LocaleMap
* com.scene7.is.provider.ImageSetColorLabel
* com.scene7.is.util.SizeInt
* com.scene7.is.util.collections.CollectionUtil
* com.scene7.is.util.error.ApplicationException
* org.jetbrains.annotations.NotNull
* org.jetbrains.annotations.Nullable
*/
package com.scene7.is.ps.provider.fvctx;
import com.scene7.is.catalog.util.localization.LocaleMap;
import com.scene7.is.provider.ImageSetColorLabel;
import com.scene7.is.ps.provider.IZoomException;
import com.scene7.is.ps.provider.Request;
import com.scene7.is.ps.provider.fvctx.FvctxImageProps;
import com.scene7.is.ps.provider.fvctx.FvctxNode;
import com.scene7.is.ps.provider.fvctx.MediaSetItemType;
import com.scene7.is.ps.provider.fvctx.MediaSetMetaData;
import com.scene7.is.ps.provider.fvctx.MediaSetSetType;
import com.scene7.is.ps.provider.fvctx.MediaSetVideoProps;
import com.scene7.is.util.SizeInt;
import com.scene7.is.util.collections.CollectionUtil;
import com.scene7.is.util.error.ApplicationException;
import java.util.List;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class FvctxNodeFrameRequestExtractor
implements FvctxNode {
private List<Request> frameRequests = CollectionUtil.list();
FvctxNodeFrameRequestExtractor() {
}
public List<Request> getFrameRequests() {
return this.frameRequests;
}
@Override
public void startItem(MediaSetItemType type) {
}
@Override
public void endItem(@NotNull String imageVersion) {
}
@Override
public void startFrameset() {
}
@Override
public void endFrameset(SizeInt size, String imageVersion, String metaVersion, boolean anonymousFrames) {
}
@Override
public void startSet(@NotNull String recordName, @NotNull MediaSetSetType setType) {
}
@Override
public void endSet(@NotNull MediaSetMetaData metaData) {
}
@Override
public void startFrame(@NotNull String netPath, @NotNull String query, @Nullable Request parsedRequest, @Nullable FvctxImageProps imageProps, boolean hasNestedFrame, boolean isMediaSetItem) {
this.frameRequests.add(parsedRequest);
}
@Override
public void startVideoFrame(@NotNull String netPath, @NotNull String query, @NotNull MediaSetVideoProps videoProps) throws ApplicationException {
}
@Override
public void endFrame(SizeInt size, @NotNull String imageVersion, @NotNull MediaSetMetaData metaData, boolean hasNestedFrame) {
}
@Override
public void endVideoFrame(@NotNull MediaSetMetaData metaData, @NotNull String version, @NotNull String suffix) throws IZoomException {
}
@Override
public void startAnonymousFrame() {
}
@Override
public void endAnonymousFrame() {
}
@Override
public void image(@NotNull String netPath, @NotNull String query, Request parsedRequest, FvctxImageProps imageProps) {
}
@Override
public void swatch(@NotNull String netPath, @NotNull String query, Request parsedRequest, FvctxImageProps imageProps, boolean hasNestedFrame, boolean isMediaItemSwatch) {
}
@Override
public void swatch(@NotNull ImageSetColorLabel data, @NotNull LocaleMap localeMap, @NotNull String locale, boolean hasNestedFrame) {
}
@Override
public void defaultSwatch() {
}
}