blob: 68580d9c6c46a5546715621a57a390e7acb88545 [file] [log] [blame]
nitindb0f7b262004-11-23 19:12:23 +00001/*******************************************************************************
2 * Copyright (c) 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11/*
12 * Created on Jul 20, 2003
13 *
14 * To change the template for this generated file go to
15 * Window>Preferences>Java>Code Generation>Code and Comments
16 */
david_williams1a3e50d2005-03-17 03:17:23 +000017package org.eclipse.jst.jsp.ui.internal.breakpointproviders;
nitindb0f7b262004-11-23 19:12:23 +000018
19import org.eclipse.core.resources.IResource;
20import org.eclipse.core.runtime.CoreException;
21
22/**
23 * @author davidw
david_williams7af83db2005-04-03 07:05:57 +000024 *
nitindb0f7b262004-11-23 19:12:23 +000025 * To change the template for this generated type comment go to
26 * Window>Preferences>Java>Code Generation>Code and Comments
27 */
28public class JavascriptLineBreakpoint {
29
30 /**
31 * @param res
32 * @param lineNumber
33 * @param pos
34 * @param pos1
35 */
36 public JavascriptLineBreakpoint(IResource res, int lineNumber, int pos, int pos1) {
37
david_williams7af83db2005-04-03 07:05:57 +000038 // TODO Should be deleted? Along with calling class?
nitindb0f7b262004-11-23 19:12:23 +000039 }
40
41 /**
42 *
43 */
44 public JavascriptLineBreakpoint() {
45 super();
nitindb0f7b262004-11-23 19:12:23 +000046 }
47
48 /**
49 *
50 */
51 public IResource getResource() throws CoreException {
52 // TODO Auto-generated method stub
53 return null;
54 }
55
56 /**
57 * @return
58 */
59 public int getLineNumber() {
60 // TODO Auto-generated method stub
61 return 0;
62 }
63
david_williams1a3e50d2005-03-17 03:17:23 +000064}