本文整理了Java中net.fortuna.ical4j.model.property.Action.<init>()
方法的一些代码示例,展示了Action.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Action.<init>()
方法的具体详情如下:
包路径:net.fortuna.ical4j.model.property.Action
类名称:Action
方法名:<init>
[英]Default constructor.
[中]默认构造函数。
代码示例来源:origin: org.bedework/bw-ical4j-cl
public Property createProperty(final String name,
final ParameterList parameters, final String value)
throws IOException, URISyntaxException, ParseException {
return new Action(parameters, value);
}
代码示例来源:origin: net.oneandone.ical4j/ical4j
public Property createProperty() {
return new Action();
}
}
代码示例来源:origin: ical4j/ical4j
public Action createProperty() {
return new Action();
}
}
代码示例来源:origin: org.bedework.ical4j/ical4j
public Property createProperty(final ParameterList parameters, final String value)
throws IOException, URISyntaxException, ParseException {
return new Action(parameters, value);
}
代码示例来源:origin: org.mnode.ical4j/ical4j
public Action createProperty() {
return new Action();
}
}
代码示例来源:origin: org.bedework/bw-ical4j-cl
public Property createProperty(final String name) {
return new Action();
}
};
代码示例来源:origin: net.oneandone.ical4j/ical4j
public Property createProperty(final ParameterList parameters, final String value)
throws IOException, URISyntaxException, ParseException {
return new Action(parameters, value);
}
代码示例来源:origin: org.bedework.ical4j/ical4j
public Property createProperty() {
return new Action();
}
}
代码示例来源:origin: ical4j/ical4j
public Action createProperty(final ParameterList parameters, final String value)
throws IOException, URISyntaxException, ParseException {
Action action;
if (AUDIO.getValue().equals(value)) {
action = AUDIO;
}
else if (DISPLAY.getValue().equals(value)) {
action = DISPLAY;
}
else if (EMAIL.getValue().equals(value)) {
action = EMAIL;
}
else if (PROCEDURE.getValue().equals(value)) {
action = PROCEDURE;
} else {
action = new Action(parameters, value);
}
return action;
}
代码示例来源:origin: org.mnode.ical4j/ical4j
public Action createProperty(final ParameterList parameters, final String value)
throws IOException, URISyntaxException, ParseException {
Action action;
if (AUDIO.getValue().equals(value)) {
action = AUDIO;
}
else if (DISPLAY.getValue().equals(value)) {
action = DISPLAY;
}
else if (EMAIL.getValue().equals(value)) {
action = EMAIL;
}
else if (PROCEDURE.getValue().equals(value)) {
action = PROCEDURE;
} else {
action = new Action(parameters, value);
}
return action;
}
代码示例来源:origin: ical4j/ical4j
public void testForPropertyNotConstant() {
Property origProp = new Action("custom");
Property resProp = Constants.forProperty(origProp);
assertTrue("forPropertyNotConstant", resProp == origProp);
}
}
代码示例来源:origin: ical4j/ical4j
public void testForPropertyConstant() {
Property origProp = Action.AUDIO;
Property resProp = Constants.forProperty(origProp);
assertTrue("forPropertyConstant", resProp == Action.AUDIO);
origProp = new Action(Action.AUDIO.getValue());
resProp = Constants.forProperty(origProp);
assertTrue("forPropertyConstant", resProp == Action.AUDIO);
}
代码示例来源:origin: micromata/projectforge
@Override
public boolean toVEvent(final TeamEventDO event, final VEvent vEvent)
{
if (event.getReminderDuration() == null || event.getReminderActionType() == null) {
return false;
}
final VAlarm alarm = new VAlarm();
Dur dur = null;
// (-1) * needed to set alert before
if (ReminderDurationUnit.MINUTES.equals(event.getReminderDurationUnit())) {
dur = new Dur(0, 0, (-1) * event.getReminderDuration(), 0);
} else if (ReminderDurationUnit.HOURS.equals(event.getReminderDurationUnit())) {
dur = new Dur(0, (-1) * event.getReminderDuration(), 0, 0);
} else if (ReminderDurationUnit.DAYS.equals(event.getReminderDurationUnit())) {
dur = new Dur((-1) * event.getReminderDuration(), 0, 0, 0);
}
if (dur == null) {
return false;
}
alarm.getProperties().add(new Trigger(dur));
alarm.getProperties().add(new Action(event.getReminderActionType().getType()));
vEvent.getAlarms().add(alarm);
return true;
}
代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-ical
addProperty(alarm, new Action(action));
内容来源于网络,如有侵权,请联系作者删除!