net.fortuna.ical4j.model.property.Action类的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(6.1k)|赞(0)|评价(0)|浏览(183)

本文整理了Java中net.fortuna.ical4j.model.property.Action类的一些代码示例,展示了Action类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Action类的具体详情如下:
包路径:net.fortuna.ical4j.model.property.Action
类名称:Action

Action介绍

[英]$Id$

Created: [Apr 6, 2004]

Defines an ACTION iCalendar component property.
[中]$Id$
创建:[2004年4月6日]
定义动作iCalendar组件属性。

代码示例

代码示例来源: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: 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: net.oneandone.cosmo/cosmo-core

/**
   * Find and return the first DISPLAY VALARM in a comoponent
   * @param component VEVENT or VTODO
   * @return first DISPLAY VALARM, null if there is none
   */
  public static VAlarm getDisplayAlarm(Component component) {
    ComponentList<VAlarm> alarms = null;
    
    if(component instanceof VEvent) {
      alarms = ((VEvent) component).getAlarms();
    }
    else if(component instanceof VToDo) {
      alarms = ((VToDo) component).getAlarms();
    }
    
    if(alarms==null || alarms.size()==0) {
      return null;
    }
    
    for(Iterator<VAlarm> it = alarms.iterator();it.hasNext();) {
      VAlarm alarm = it.next();
      if(Action.DISPLAY.equals(alarm.getAction())) {
        return alarm;
      }
    }
    
    return null;   
  }
}

代码示例来源:origin: ical4j/ical4j

@Override
public void applyTo(VAlarm element) {
  Action action = element.getAction();
  if (action == null || !"DISPLAY".equals(action.getValue()) || element.getDescription() != null
      && element.getDescription().getValue() != null) {
    return;
  }
  Description description = new Description("display");
  element.getProperties().add(description);
}

代码示例来源:origin: 1and1/cosmo

/**
   * Find and return the first DISPLAY VALARM in a comoponent
   * @param component VEVENT or VTODO
   * @return first DISPLAY VALARM, null if there is none
   */
  public static VAlarm getDisplayAlarm(Component component) {
    ComponentList<VAlarm> alarms = null;
    
    if(component instanceof VEvent) {
      alarms = ((VEvent) component).getAlarms();
    }
    else if(component instanceof VToDo) {
      alarms = ((VToDo) component).getAlarms();
    }
    
    if(alarms==null || alarms.size()==0) {
      return null;
    }
    
    for(Iterator<VAlarm> it = alarms.iterator();it.hasNext();) {
      VAlarm alarm = it.next();
      if(Action.DISPLAY.equals(alarm.getAction())) {
        return alarm;
      }
    }
    
    return null;   
  }
}

代码示例来源:origin: org.mnode.ical4j/ical4j

@Override
public void applyTo(VAlarm element) {
  Action action = element.getAction();
  if (action == null || !"DISPLAY".equals(action.getValue()) || element.getDescription() != null
      && element.getDescription().getValue() != null) {
    return;
  }
  Description description = new Description("display");
  element.getProperties().add(description);
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

public Property createProperty() {
    return new 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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: net.oneandone.ical4j/ical4j

@Override
public void applyTo(VAlarm element) {
  Action action = element.getAction();
  if (action == null || !"DISPLAY".equals(action.getValue()) || element.getDescription() != null
      && element.getDescription().getValue() != null) {
    return;
  }
  Description description = new Description("display");
  element.getProperties().add(description);
}

代码示例来源:origin: ical4j/ical4j

public Action createProperty() {
    return new Action();
  }
}

代码示例来源: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: org.bedework.ical4j/ical4j

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: org.mnode.ical4j/ical4j

public Action createProperty() {
    return new Action();
  }
}

代码示例来源:origin: org.mnode.ical4j/ical4j

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: org.bedework.ical4j/ical4j

public Property createProperty() {
    return new Action();
  }
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: org.bedework/bw-ical4j-cl

public Property createProperty(final String name) {
    return new Action();
  }
};

代码示例来源:origin: org.bedework/bw-ical4j-cl

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: net.oneandone.ical4j/ical4j

public Property createProperty(final ParameterList parameters, final String value)
    throws IOException, URISyntaxException, ParseException {
  return new Action(parameters, value);
}

相关文章

微信公众号

最新文章

更多