📄 adelement.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: AdElement.java
package com.keyshop.shop.channel.model;
public class AdElement
{
String fileType;
String fileName;
String linkurl;
int columIndex;
int width;
int height;
String displayName;
public AdElement()
{
fileType = "";
fileName = "";
linkurl = "";
columIndex = 0;
width = 0;
height = 0;
displayName = "";
}
public String getFileName()
{
return fileName;
}
public int getColumIndex()
{
return columIndex;
}
public String getFileType()
{
return fileType;
}
public int getHeight()
{
return height;
}
public String getLinkurl()
{
return linkurl;
}
public int getWidth()
{
return width;
}
public void setWidth(int width)
{
this.width = width;
}
public void setLinkurl(String linkurl)
{
this.linkurl = linkurl;
}
public void setHeight(int height)
{
this.height = height;
}
public void setFileType(String fileType)
{
this.fileType = fileType;
}
public void setFileName(String fileName)
{
this.fileName = fileName;
}
public void setColumIndex(int columIndex)
{
this.columIndex = columIndex;
}
public String getDisplayName()
{
return displayName;
}
public void setDisplayName(String displayName)
{
this.displayName = displayName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -