FvctxNode.java
2.61 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
/*
* 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.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.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.error.ApplicationException;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
interface FvctxNode {
public void startItem(MediaSetItemType var1);
public void endItem(@NotNull String var1);
public void startSet(@NotNull String var1, @NotNull MediaSetSetType var2);
public void endSet(@NotNull MediaSetMetaData var1) throws ApplicationException;
public void startFrameset();
public void endFrameset(SizeInt var1, String var2, String var3, boolean var4);
public void startFrame(@NotNull String var1, @NotNull String var2, @Nullable Request var3, @Nullable FvctxImageProps var4, boolean var5, boolean var6) throws ApplicationException;
public void startVideoFrame(@NotNull String var1, @NotNull String var2, @NotNull MediaSetVideoProps var3) throws ApplicationException;
public void endFrame(@Nullable SizeInt var1, @NotNull String var2, @NotNull MediaSetMetaData var3, boolean var4) throws IZoomException;
public void endVideoFrame(@NotNull MediaSetMetaData var1, @NotNull String var2, @NotNull String var3) throws IZoomException;
public void startAnonymousFrame() throws IZoomException;
public void endAnonymousFrame() throws IZoomException;
public void image(@NotNull String var1, @NotNull String var2, Request var3, FvctxImageProps var4) throws ApplicationException;
public void swatch(@NotNull String var1, @NotNull String var2, Request var3, FvctxImageProps var4, boolean var5, boolean var6) throws ApplicationException;
public void swatch(@NotNull ImageSetColorLabel var1, @NotNull LocaleMap var2, @NotNull String var3, boolean var4) throws ApplicationException;
public void defaultSwatch() throws ApplicationException;
}